Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
40343 | 王籽易 | 公鸡打鸣 | C++ | 通过 | 100 | 199 MS | 252 KB | 343 | 2022-05-28 15:07:06 |
#include <bits/stdc++.h> using namespace std; int x,y,k,s=0; int main(){ cin>>x>>y>>k; while(k--&&x!=y){ int ai,xi,bi,yi; cin>>ai>>xi>>bi>>yi; x+=(ai==1?xi:-1*xi); y+=(bi==1?yi:-1*yi); if(x<0){ x=0; } if(y<0){ y=0; } s++; } if(x!=y){ cout<<-1; } else{ cout<<s; } return 0; }