今天在用Navicat连接另外一台主机上的MySQL时报错:Host is not allowed to connect to this MySQL server默认安装的mysql无法远程连接是因为MySQL默认配置了不支持远程连接引起的。解决方法:一、本地主机上登录root用户找到mysql.exe所在路径࿰…
解题思路: 贪心
代码如下:
#include <iostream>
#include <algorithm>
using namespace std;
const int N 100010;
int a[N], w[N];
int ans;int main() {int n, m;cin >> n >> m;for (int i 1; i < n; i)cin >> a…