提交时间:2022-06-04 10:27:14

运行 ID: 40722

#include<bits/stdc++.h> using namespace std; int a,b,n,w,x,y,z; int main(){ cin>>a>>b>>n; for(int i=1;i<=n;i++){ cin>>w>>x>>y>>z; if(w==1) a+=x; else a-=x; if(y==1) b+=z; else b-=z; if(a==b){ cout<<i; return 0; } } cout<<"-1"; return 0; }