結果

問題 No.2982 Logic Battle
ユーザー tailstails
提出日時 2024-12-07 19:39:35
言語 cLay
(20240714-1)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 181,576 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 19:39:39
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 AC 6 ms
5,248 KB
testcase_29 AC 5 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct A{
	__int128_t d;
	ll x;
};
bool operator<(A const&a, A const&b){
	return a.d>b.d?true:a.d<b.d?false:a.x>b.x;
}
{
	vector<A> s[3];
	s[0].push_back({0,0});
	s[1].push_back({0,0});
	ll@n;
	rrep(h,n){
		ll@a[3];
		vector<A> t[3];
		rep(i,3){
			vector<A> u;
			rep(j,3){
				if(i!=j){
					for(auto b:s[j]){
						ll x=b.x+a[i];
						u.push_back({b.d+x,x=x==0?0:x-1});
					}
				}
			}
			sort(u.begin(),u.end());
			ll w=-1;
			for(auto b:u){
				if(b.x>w){
					w=b.x;
					t[i].push_back(b);
				}
			}
		}
		rep(i,3){
			s[i]=t[i];
		}
	}
	__int128_t z=0;
	rep(i,3){
		for(auto b:s[i]){
			z=max(z,b.d);
		}
	}
	if(z>=10d18){
		printf("%lld%018lld",(ll)(z/1d18),(ll)(z%1d18));
	}else{
		printf("%lld",(ll)z);
	}
}
0