結果

問題 No.814 ジジ抜き
ユーザー risujirohrisujiroh
提出日時 2019-04-12 22:18:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 169,212 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-09-14 19:54:25
合計ジャッジ時間 6,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 140 ms
10,240 KB
testcase_05 AC 140 ms
10,112 KB
testcase_06 AC 144 ms
10,112 KB
testcase_07 AC 73 ms
6,656 KB
testcase_08 AC 139 ms
9,984 KB
testcase_09 AC 103 ms
8,192 KB
testcase_10 AC 138 ms
9,984 KB
testcase_11 AC 140 ms
9,984 KB
testcase_12 AC 70 ms
6,656 KB
testcase_13 AC 72 ms
6,784 KB
testcase_14 AC 108 ms
8,320 KB
testcase_15 AC 56 ms
5,888 KB
testcase_16 AC 55 ms
5,888 KB
testcase_17 AC 113 ms
8,576 KB
testcase_18 AC 96 ms
7,936 KB
testcase_19 AC 139 ms
9,996 KB
testcase_20 AC 72 ms
6,656 KB
testcase_21 AC 81 ms
7,168 KB
testcase_22 AC 116 ms
8,832 KB
testcase_23 AC 60 ms
6,144 KB
testcase_24 AC 102 ms
8,192 KB
testcase_25 AC 83 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  int n; cin >> n;
  V<lint> k(n), l(n), d(n); for (int i = 0; i < n; ++i) cin >> k[i] >> l[i] >> d[i];
  auto chk = [&](lint x) -> bool {
    lint s = 0;
    for (int i = 0; i < n; ++i) {
      s += max(min(l[i] + (k[i] << d[i]), x + 1) - l[i], 0LL) + ~(~0LL << d[i]) >> d[i];
    }
    return s & 1;
  };
  for (int i = 1; i <= 10; ++i) {
    cerr << i << ' ' << chk(i) << '\n';
  }
  lint ng = 0, ok = 1e18;
  while (ok - ng > 1) {
    lint mid = ng + ok >> 1;
    (chk(mid) ? ok : ng) = mid;
  }
  cout << ok << '\n';
}
0