Submission #806802

# Submission time Handle Problem Language Result Execution time Memory
806802 2023-08-04T10:00:36 Z LucaIlie Remittance (JOI19_remittance) C++17
0 / 100
1 ms 212 KB
#include <bits/stdc++.h>

using namespace std;

const int MAX_N = 1e6;
const long long INF = 1e17;
int a[MAX_N], b[MAX_N];

int main() {
    int n;

    cin >> n;
    for ( int i = 0; i < n; i++ )
        cin >> a[i] >> b[i];

    /*for ( int i = 0; i < n; i++ ) {
        int j = (i - 1 + n) % n, it = 0;
        long long x = 0;
        while ( x < INF && j != i && a[i] + (x / (1 << ((i - j + n) % n))) < b[i] ) {
            x *= 2;
            if ( b[j] - a[j] > 0 )
                x += b[j] - a[j];
            it++;
        }
    }*/
    for ( int p = 0; p < 1000; p++ ) {
        for ( int i = 0; i < n; i++ ) {
            if ( a[i] > b[i] ) {
                int x = (a[i] - b[i]) / 2;
                a[(i + 1) % n] += x;
                a[i] -= 2 * x;
            }
        }
    }

    bool ans = true;
    for ( int i = 0; i < n; i++ )
        ans &= (a[i] == b[i]);
    cout << (ans ? "YES" : "NO");

    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -