이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define x first
#define y second
ll dx[]={1, 1, 0,-1,-1, -1, 0, 1};
ll dy[]={0, 1, 1, 1, 0, -1,-1,-1};
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
ll n;
cin>>n;
vector<ll> a(n),b(n);
for(int i=0; i<n; i++)
{
cin>>a[i]>>b[i];
}
for(int j=0; j<1e5; j++)
{
for(int i=0; i<n; i++)
{
if(a[i]>b[i])
{
ll t1=(a[i]-b[i]+1)/2;
if(t1*2>a[i])t1--;
a[i]-=t1*2;
a[(i+1)%n]+=t1;
}
}
}
if(a!=b)
{
cout<<"No";
}
else cout<<"Yes";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |