結果

問題 No.771 しおり
ユーザー tailstails
提出日時 2018-12-19 10:31:28
言語 cLay
(20240714-1)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 3,104 ms
コンパイル使用メモリ 175,452 KB
実行使用メモリ 23,480 KB
最終ジャッジ日時 2024-07-22 07:07:05
合計ジャッジ時間 5,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
22,392 KB
testcase_01 AC 12 ms
8,528 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 47 ms
15,432 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 13 ms
8,576 KB
testcase_28 AC 23 ms
10,484 KB
testcase_29 AC 13 ms
8,148 KB
testcase_30 AC 94 ms
22,888 KB
testcase_31 AC 107 ms
22,168 KB
testcase_32 AC 4 ms
6,940 KB
testcase_33 AC 100 ms
22,136 KB
testcase_34 AC 94 ms
23,164 KB
testcase_35 AC 4 ms
6,940 KB
testcase_36 AC 3 ms
6,944 KB
testcase_37 AC 2 ms
6,948 KB
testcase_38 AC 4 ms
6,944 KB
testcase_39 AC 3 ms
6,944 KB
testcase_40 AC 43 ms
15,724 KB
testcase_41 AC 96 ms
23,480 KB
testcase_42 AC 92 ms
22,748 KB
testcase_43 AC 14 ms
8,792 KB
testcase_44 AC 90 ms
22,460 KB
testcase_45 AC 151 ms
22,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int n,a[18],b[18],d[1<<18][18];
{
	rd(n,(a,b)(n));
	rep(j,1<<n)rep(k,n){
		d[j][k]=9999;
		if(j&1<<k){
			if(j&j-1)rep(l,n)d[j][k]<?=max(d[j^1<<k][l],b[l]-a[l]+a[k]);
			else d[j][k]=0;
		}
	}
	wt(min(d[(1<<n)-1](n)));
}
0