提交时间:2022-05-28 14:17:26

运行 ID: 40216

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