結果

問題 No.814 ジジ抜き
ユーザー 沙耶花沙耶花
提出日時 2020-12-08 16:59:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 281 ms / 3,000 ms
コード長 576 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 204,072 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-17 14:44:37
合計ジャッジ時間 7,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 281 ms
10,368 KB
testcase_05 AC 270 ms
10,496 KB
testcase_06 AC 273 ms
10,340 KB
testcase_07 AC 86 ms
7,040 KB
testcase_08 AC 138 ms
9,996 KB
testcase_09 AC 198 ms
8,192 KB
testcase_10 AC 253 ms
10,156 KB
testcase_11 AC 264 ms
10,112 KB
testcase_12 AC 120 ms
6,940 KB
testcase_13 AC 115 ms
6,944 KB
testcase_14 AC 175 ms
8,576 KB
testcase_15 AC 93 ms
6,944 KB
testcase_16 AC 66 ms
6,944 KB
testcase_17 AC 214 ms
8,832 KB
testcase_18 AC 163 ms
8,064 KB
testcase_19 AC 185 ms
10,112 KB
testcase_20 AC 134 ms
6,944 KB
testcase_21 AC 101 ms
7,296 KB
testcase_22 AC 119 ms
8,960 KB
testcase_23 AC 85 ms
6,940 KB
testcase_24 AC 123 ms
8,448 KB
testcase_25 AC 88 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000

int main(){
	
	int N;
	cin>>N;
	
	vector<long long> K(N),L(N),D(N);
	rep(i,N){
		scanf("%lld %lld %lld",&K[i],&L[i],&D[i]);
	}
	
	long long ok = 1000000000000000000,ng = -1;
	
	while(ok-ng>1){
		long long mid = (ok+ng)/2;
		
		int sum = 0;
		
		rep(i,N){
			if(mid<L[i])continue;
			long long temp = mid-L[i];
			long long x = min(K[i],temp / (1LL<<D[i]) + 1);
			sum ^= x&1;
		}
		
		if(sum)ok = mid;
		else ng = mid;
		
	}
	
	cout<<ok<<endl;
	
	return 0;
}
0