1.吃饭吃饱 大到小排贪心,AC #include <bits/stdc++.h> using namespace std; int main() { using P = pair<int,int>; int T; cin >> T; while (T--) { int n,m; cin >> n >> m; vector<P> vec; int res = 0; ...