牛客小白月赛88 ~(补题ing) 超级闪光牛可乐 题意 就是从n种零食中,找出不大于1000以内的价值和并输出就行 #include<bits/stdc++.h> const int N = 100010; using namespace std; int x; int n; void solve(){ cin >> x; cin >> n; char ch='a'; int v=0; for(int i=1;i<=n;i++){ char ch1; int t; cin >> ch1 >> t; if(v<t){ c...