// header file
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
// pragma
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
// macros
#define endl "\n"
#define ll long long
#define mp make_pair
#define ins insert
#define lb lower_bound
#define pb push_back
#define ub upper_bound
#define lll __int128
#define fi first
#define se second
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_multiset;
typedef tree<int, null_type, less<int>, rb_tree_tag,tree_order_statistics_node_update> ordered_set;
int main() {
ios_base::sync_with_stdio(0); cin.tie(NULL);
int n;
cin >> n;
pair<ll, ll> a[n];
for(int i = 0; i < n; ++i)
cin >> a[i].fi >> a[i].se;
bool change = 1;
for(int abc = 1; abc <= 100; ++abc) {
change = 0;
for(int j = 0; j < n; ++j) {
if(a[j].fi > a[j].se) {
change = 1;
ll diff = a[j].fi - a[j].se;
if(diff & 1 && a[j].fi > a[j].se + 1)
++diff;
else
--diff;
a[j].fi -= diff;
a[(j + 1) % n].fi += diff / 2;
}
}
}
assert(!change);
for(int i = 0; i < n; ++i) {
if(a[i].fi != a[i].se)
cout << "No" << endl, exit(0);
}
cout << "Yes" << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |