Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
40461 | 杨中琦 | 公鸡打鸣 | C++ | 通过 | 100 | 39 MS | 252 KB | 399 | 2022-05-29 08:41:51 |
#include<bits/stdc++.h> using namespace std; int main() { int i,G1,G2,s,k,a,x,b,y; cin>>G1>>G2>>k; if(G1==G2) { cout<<0; return 0; } for(i=1;i<=k;i++) { cin>>a>>x>>b>>y; if(a==1) G1+=x; else if(G1-x>=0) G1-=x; else G1=0; if(b==1) G2+=y; else if(G2-y>=0) G2-=y; else G2=0; if(G1==G2) { cout<<i; return 0; } } cout<<"-1"; return 0; }