結果
問題 | No.771 しおり |
ユーザー | mai |
提出日時 | 2018-12-18 23:47:59 |
言語 | cLay (20240714-1) |
結果 |
WA
|
実行時間 | - |
コード長 | 757 bytes |
コンパイル時間 | 1,882 ms |
コンパイル使用メモリ | 176,348 KB |
実行使用メモリ | 23,796 KB |
最終ジャッジ日時 | 2024-07-05 13:15:52 |
合計ジャッジ時間 | 4,934 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 4 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | AC | 36 ms
10,784 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
6,940 KB |
testcase_37 | AC | 2 ms
7,672 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 181 ms
22,448 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
ソースコード
int N; int A[1000][2]; int dp[1<<18][18]; inline int dist(int i, int j) { return A[i][1] - A[i][0] + A[j][0]; } { rd(N); REP(i, N) { int a, b; rd(a, b); A[i][0] = a; A[i][1] = b; } fill(dp[1], dp[1<<N], int(1e9)); REP(i, N) { dp[0][i] = 0; REP(j, N) { dp[i<<1][j] = 0; } } REP(b, 1, 1 << N) { REP(i, N) { REP(j, N) { if (i == j) continue; dp[b | (1 << j)][j] = min(dp[b | (1 << j)][j], max(dp[b][i], dist(i, j)) ); } } } int best = 1e9; REP(i, N){ best = min(best, dp[(1<<N)-1][i]); } wt(best); }