# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
296446 | BeanZ | Remittance (JOI19_remittance) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
const int N = 1e6 + 5;
ll a[N], b[N];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
if (fopen("balance.in", "r")){
freopen("balance.in", "r", stdin);
freopen("balance.out", "w", stdout);
}
ll n;
cin >> n;
for (int i = 1; i <= n; i++) cin >> a[i] >> b[i];
while (true){
bool flag = false;
for (int i = 1; i < n; i++){
if (a[i] <= b[i] || a[i] == 1) continue;
ll rem = a[i] - b[i] + 1;
ll pass = rem / 2;
if (pass == 0) continue;
flag = true;
a[i + 1] += pass;
a[i] -= pass * 2;
}
if (a[n] > b[n] && a[n] > 1){
ll rem = a[n] - b[n] + 1;
ll pass = rem / 2;
flag = true;
a[1] += pass;
a[n] -= pass * 2;
}
if (!flag) break;
}
for (int i = 1; i <= n; i++){
if (a[i] != b[i]) return cout << "No", 0;
}
cout << "Yes";
}
/*
*/
컴파일 시 표준 에러 (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... |