#include <iostream> #include <iterator> using namespace std; struct f { int m;//每道菜的价格 int y;//每道菜的营养 }; int main() { int C,N;//C:钱 N:个数 while(cin>>C>>N) { f a[N]; for(int i=0;i<N;++i) { cin>>a[i].m>>a[i...