結果
問題 | No.771 しおり |
ユーザー | mai |
提出日時 | 2018-12-18 23:50:10 |
言語 | cLay (20240714-1) |
結果 |
WA
|
実行時間 | - |
コード長 | 723 bytes |
コンパイル時間 | 1,878 ms |
コンパイル使用メモリ | 176,468 KB |
実行使用メモリ | 23,840 KB |
最終ジャッジ日時 | 2024-07-05 13:15:58 |
合計ジャッジ時間 | 4,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 31 ms
7,936 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
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 149 ms
22,016 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; dp[i<<1][i] = 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); }