제출 #974397

#제출 시각아이디문제언어결과실행 시간메모리
974397rolandpetrean송금 (JOI19_remittance)C++17
0 / 100
1 ms408 KiB
#include <bits/stdc++.h>
using namespace std;

using ll = long long;
#define int ll

#define endl '\n'
#define pb push_back
using pi = array<int, 2>;

const int LG = 31;
int p2[LG];

void prec() {
  p2[0] = 1;
  for (int i = 1; i < LG; ++i) p2[i] = p2[i - 1] * 2;
}

int32_t main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  
  prec();
  
  int n;
  cin >> n;
  
  vector<int> a(n), b(n), c(n);
  for (int i = 0; i < n; ++i) {
    cin >> a[i] >> b[i];
    c[i] = b[i] - a[i];
  }
  
  assert(n <= 20);
  
  vector<int> in(n);
  for (int i = 0; i < n; ++i) {
    in[0] -= p2[i] * c[i];
  }
  
  if (in[0] % (p2[n] - 1) != 0) {
    cout << "No";
    return 0;
  }
  in[0] /= p2[n] - 1;
  
  for (int i = 1; i < n; ++i) {
    int x = in[i - 1] - c[i - 1];
    if (x % 2 != 0) {
      cout << "No";
      return 0;
    }
    in[i] = x / 2;
  }
  
  for (int i = 0; i < n; ++i) {
    if (in[i] < 0 || in[i] - 2 * (in[(i + 1) % n]) != c[i]) {
      cout << "No";
      return 0;
    }
  }
  
  cout << "Yes";
}

/*
in[0] = -sum{2^i * c[i]} / (2^n - 1)
0 + 2 * (-1) + 4 * (1) + 8 * (0) + 16 * (-4)
*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...