#include <bits/stdc++.h>
#pragma GCC target("sse,sse2")
#pragma GCC optimize("unroll-loops,O3")
#define rep(i,l,r) for (int i = l; i < r; i++)
#define repr(i,r,l) for (int i = r; i >= l; i--)
#define X first
#define Y second
#define all(x) (x).begin() , (x).end()
#define pb push_back
#define endl '\n'
#define debug(x) cerr << #x << " : " << x << endl;
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pll;
constexpr int N = 1e6+20,mod = 1e9+7,inf = 1e9+10;
inline int mkay(int a,int b){
if (a+b >= mod) return a+b-mod;
if (a+b < 0) return a+b+mod;
return a+b;
}
inline int poww(int a,int k){
if (k < 0) return 0;
int z = 1;
while (k){
if (k&1) z = 1ll*z*a%mod;
a = 1ll*a*a%mod;
k /= 2;
}
return z;
}
int a[N],b[N],n,x[N],j,tmp[N];
ll s,s2;
int nxt(int i){
return ((i == n-1) ? 0 : i+1);
}
bool check(int val){
s2 = val;
if (s2 > s) return 0;
x[j] = val;
debug(x[j]);
int cur = j;
do{
int k = nxt(cur);
if (k == j) break;
if ((a[cur]-b[cur]+x[cur])%2 || a[cur]-b[cur] < -x[cur]){
return 0;
}
x[k] = (a[cur]-b[cur]+x[cur])/2;
s2 += x[k];
if (s2 > s) return 0;
cur = k;
}while (1);
if (s != s2) return 0;
return 1;
}
bool check2(){
rep(i,0,n) tmp[i] = a[i];
while (1){
bool fl = 0;
rep(i,0,n) fl |= x[i];
if (!fl) return 1;
rep(i,0,n){
if (x[i] && tmp[i] > 1){
tmp[i] -= 2;
x[i]--;
tmp[nxt(i)]++;
fl = 0;
}
}
if (fl) return 0;
}
}
int main(){
ios_base :: sync_with_stdio(0); cin.tie(0);
cin >> n;
int mx = -1;
rep(i,0,n){
cin >> a[i] >> b[i];
s += a[i]-b[i];
if (a[i]-b[i] > mx){
j = i;
mx = a[i]-b[i];
}
}
if (s < 0){
cout << "No";
return 0;
}
rep(i,0,2) if (check(i))
cout << "Yes";
return 0;
}
cout << "No";
return 0;
}
Compilation message
remittance.cpp: In function 'int main()':
remittance.cpp:94:16: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
94 | rep(i,0,2) if (check(i))
| ^~
remittance.cpp:96:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
96 | return 0;
| ^~~~~~
remittance.cpp: At global scope:
remittance.cpp:98:5: error: 'cout' does not name a type
98 | cout << "No";
| ^~~~
remittance.cpp:99:5: error: expected unqualified-id before 'return'
99 | return 0;
| ^~~~~~
remittance.cpp:100:1: error: expected declaration before '}' token
100 | }
| ^