結果

問題 No.771 しおり
ユーザー maimai
提出日時 2018-12-18 23:55:40
言語 cLay
(20240714-1)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 176,100 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-07-22 07:05:11
合計ジャッジ時間 5,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
22,464 KB
testcase_01 AC 16 ms
7,888 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 70 ms
15,332 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 16 ms
8,188 KB
testcase_28 AC 33 ms
10,584 KB
testcase_29 AC 17 ms
9,412 KB
testcase_30 AC 146 ms
23,680 KB
testcase_31 AC 146 ms
22,248 KB
testcase_32 AC 6 ms
6,944 KB
testcase_33 AC 145 ms
22,384 KB
testcase_34 AC 145 ms
22,344 KB
testcase_35 AC 6 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 3 ms
6,944 KB
testcase_40 AC 69 ms
14,912 KB
testcase_41 AC 145 ms
22,052 KB
testcase_42 AC 144 ms
22,004 KB
testcase_43 AC 16 ms
9,716 KB
testcase_44 AC 145 ms
22,568 KB
testcase_45 AC 145 ms
22,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[1<<i][i] = 0;
    }
    
    REP(b, 1, 1 << N) {
        REP(i, N) {
            if (~b & (1 << i)) continue;
            REP(j, N) {
                if (b & (1 << 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);
    
}
0