第一题 思路:直接模拟 #include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { std::ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); int i = 1, a, b, c, d, att = 0; cin >> a >> b >> c >> d; while(i ++) { int ...