結果
問題 | No.814 ジジ抜き |
ユーザー | はまやんはまやん |
提出日時 | 2019-04-13 16:52:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 313 ms / 3,000 ms |
コード長 | 1,926 bytes |
コンパイル時間 | 1,706 ms |
コンパイル使用メモリ | 166,800 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-09-15 11:12:10 |
合計ジャッジ時間 | 7,588 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 311 ms
10,368 KB |
testcase_05 | AC | 313 ms
10,496 KB |
testcase_06 | AC | 309 ms
10,112 KB |
testcase_07 | AC | 97 ms
6,912 KB |
testcase_08 | AC | 147 ms
10,240 KB |
testcase_09 | AC | 224 ms
8,320 KB |
testcase_10 | AC | 289 ms
9,984 KB |
testcase_11 | AC | 305 ms
10,112 KB |
testcase_12 | AC | 141 ms
6,784 KB |
testcase_13 | AC | 131 ms
6,912 KB |
testcase_14 | AC | 208 ms
8,576 KB |
testcase_15 | AC | 111 ms
6,144 KB |
testcase_16 | AC | 77 ms
6,016 KB |
testcase_17 | AC | 248 ms
8,960 KB |
testcase_18 | AC | 195 ms
8,064 KB |
testcase_19 | AC | 204 ms
10,112 KB |
testcase_20 | AC | 155 ms
6,784 KB |
testcase_21 | AC | 121 ms
7,296 KB |
testcase_22 | AC | 130 ms
9,088 KB |
testcase_23 | AC | 100 ms
6,272 KB |
testcase_24 | AC | 115 ms
8,448 KB |
testcase_25 | AC | 99 ms
7,424 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int N; ll K[301010], L[301010], D[301010]; ll p[101]; //--------------------------------------------------------------------------------------------------- int check(ll x) { __int128 sm = 0; rep(i, 0, N) { if (x < L[i]) continue; ll n = (x - L[i]) / p[D[i]] + 1; ll x = max(0LL, n); x = min(x, K[i]); sm += x; } return sm % 2 == 1; } //--------------------------------------------------------------------------------------------------- void _main() { p[0] = 1; rep(i, 1, 101) p[i] = p[i - 1] * 2; cin >> N; rep(i, 0, N) cin >> K[i] >> L[i] >> D[i]; ll ng = -1, ok = infl; while (ng + 1 != ok) { ll md = (ng + ok) / 2; if (check(md)) ok = md; else ng = md; } cout << ok << endl; }