# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1102130 | ro9669 | Remittance (JOI19_remittance) | C++17 | 1 ms | 460 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define fi first
#define se second
#define all(v) v.begin() , v.end()
#define sz(v) int(v.size())
#define unq(v) sort(all(v)); v.resize(unique(all(v)) - v.begin());
using namespace std;
typedef long long ll;
typedef pair<int , int> ii;
typedef pair<long long , int> lli;
const int maxN = int(1e6)+7;
int n , a[maxN] , b[maxN];
void solve(){
cin >> n;
for (int i = 0 ; i < n ; i++){
cin >> a[i] >> b[i];
}
for (int t = 0 ; t < 30 ; t++){
for (int i = 0 ; i < n ; i++){
if (a[i] > b[i]){
int x = (a[i] - b[i]) / 2;
a[i] -= 2 * x;
a[(i + 1) % n] += x;
}
}
}
for (int i = 0 ; i < n ; i++){
if (a[i] != b[i]){
cout << "No\n";
return;
}
}
cout << "Yes\n";
}
#define name "A"
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if (fopen(name".INP" , "r")){
freopen(name".INP" , "r" , stdin);
freopen(name".OUT" , "w" , stdout);
}
int t = 1; //cin >> t;
while (t--) solve();
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |