結果

問題 No.814 ジジ抜き
ユーザー leaf_1415leaf_1415
提出日時 2019-04-16 03:30:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 314 ms / 3,000 ms
コード長 617 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 55,748 KB
実行使用メモリ 10,360 KB
最終ジャッジ日時 2024-09-22 08:09:49
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,520 KB
testcase_01 AC 2 ms
7,392 KB
testcase_02 AC 2 ms
7,520 KB
testcase_03 AC 5 ms
7,520 KB
testcase_04 AC 314 ms
10,360 KB
testcase_05 AC 303 ms
10,212 KB
testcase_06 AC 308 ms
10,260 KB
testcase_07 AC 94 ms
9,940 KB
testcase_08 AC 147 ms
10,216 KB
testcase_09 AC 219 ms
9,700 KB
testcase_10 AC 283 ms
10,228 KB
testcase_11 AC 297 ms
10,272 KB
testcase_12 AC 134 ms
9,184 KB
testcase_13 AC 132 ms
8,680 KB
testcase_14 AC 196 ms
9,920 KB
testcase_15 AC 106 ms
9,988 KB
testcase_16 AC 74 ms
10,324 KB
testcase_17 AC 243 ms
9,828 KB
testcase_18 AC 189 ms
9,572 KB
testcase_19 AC 200 ms
10,324 KB
testcase_20 AC 148 ms
8,800 KB
testcase_21 AC 116 ms
9,316 KB
testcase_22 AC 132 ms
10,084 KB
testcase_23 AC 95 ms
8,676 KB
testcase_24 AC 139 ms
9,700 KB
testcase_25 AC 98 ms
9,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define llint long long

using namespace std;

llint n;
llint k[300005], l[300005], d[300005];

bool check(llint x)
{
	llint ret = 0;
	for(int i = 1; i <= n; i++){
		if(x-l[i] < 0) continue;
		llint cnt = (x-l[i])/(1LL<<d[i])+1;
		if(cnt < 0) cnt = 0;
		if(cnt > k[i]) cnt = k[i];
		ret += cnt;
	}
	return ret % 2;
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> k[i] >> l[i] >> d[i];
	
	llint ub = 1e18+5, lb = -1, mid;
	while(ub-lb>1){
		mid=(ub+lb)/2;
		if(check(mid)) ub = mid;
		else lb = mid;
	}
	cout << ub << endl;
	
	return 0;
}
0