結果

問題 No.814 ジジ抜き
ユーザー kotatsugamekotatsugame
提出日時 2020-03-27 04:27:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 356 ms / 3,000 ms
コード長 420 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 66,500 KB
実行使用メモリ 11,692 KB
最終ジャッジ日時 2024-06-10 15:55:26
合計ジャッジ時間 9,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 307 ms
10,496 KB
testcase_05 AC 305 ms
10,624 KB
testcase_06 AC 325 ms
10,368 KB
testcase_07 AC 163 ms
7,040 KB
testcase_08 AC 297 ms
10,368 KB
testcase_09 AC 237 ms
8,448 KB
testcase_10 AC 356 ms
10,112 KB
testcase_11 AC 316 ms
10,368 KB
testcase_12 AC 169 ms
6,784 KB
testcase_13 AC 171 ms
7,040 KB
testcase_14 AC 264 ms
8,704 KB
testcase_15 AC 129 ms
6,016 KB
testcase_16 AC 125 ms
6,272 KB
testcase_17 AC 259 ms
9,088 KB
testcase_18 AC 264 ms
8,192 KB
testcase_19 AC 338 ms
10,240 KB
testcase_20 AC 188 ms
6,784 KB
testcase_21 AC 213 ms
8,560 KB
testcase_22 AC 248 ms
11,692 KB
testcase_23 AC 140 ms
10,600 KB
testcase_24 AC 232 ms
11,256 KB
testcase_25 AC 181 ms
10,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:17:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   17 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
long K[3<<17],L[3<<17],D[3<<17];
bool cnt(long X)
{
	long ret=0;
	for(int i=0;i<N;i++)
	{
		if(X<L[i])continue;
		long r=X-L[i]>>D[i];
		ret=(ret+min(r+1,K[i]))%2;
	}
	return ret%2==1;
}
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>K[i]>>L[i]>>D[i];
	long L=-1,R=2e18;
	while(R-L>1)
	{
		long M=(L+R)/2;
		if(cnt(M))R=M;
		else L=M;
	}
	cout<<R<<endl;
}
0