이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#pragma GCC optimize("O2")
using namespace std;
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define sz(x) (int)x.size()
#define endl '\n'
int n;
const int N = 1e6 + 5;
int a[N];
int b[N];
void input() {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i] >> b[i];
}
}
int cgive(int i) {
int d = a[i] - b[i];
if (d % 2 == 0) {
return d / 2;
}
if (a[i] >= d + 1) {
return (d + 1) / 2;
}
return (d - 1) / 2;
}
void give(int i, int x) {
int ne = i + 1;
if (ne == n) {
ne = 0;
}
a[i] -= 2 * x;
a[ne] += x;
}
void solve() {
for (int t = 0; t < 60; t++) {
for (int i = 0; i < n; i++) {
if (a[i] > b[i]) {
give(i, cgive(i));
}
}
}
for (int i = 0; i < n; i++) {
if (a[i] != b[i]) {
cout << "No";
return;
}
}
cout << "Yes";
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
input();
solve();
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... |