結果

問題 No.1715 Dinner 2
ユーザー 6soukiti296soukiti29
提出日時 2024-07-14 12:31:04
言語 Nim
(2.0.2)
結果
TLE  
実行時間 -
コード長 804 bytes
コンパイル時間 4,038 ms
コンパイル使用メモリ 65,468 KB
実行使用メモリ 13,892 KB
最終ジャッジ日時 2024-07-14 12:31:12
合計ジャッジ時間 8,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sequtils,strutils
var
    N,D: int
    P, Q: array[1010, int]
    dp : array[1010, array[1010, int]]
var input = stdin.readLine.split.map(parseInt)
(N, D) = (input[0], input[1])

for n in 1..N:
    input = stdin.readLine.split.map(parseInt)
    (P[n], Q[n]) = (input[0], input[1])
var
    r = 0
    l = -100000001
    q = -100000000001
while r - l > 1:
    var t = (r + l) div 2
    for i in 1..D:
        for j in 1..N:
            dp[i][j] = q
        for j in 1..N:
            for k in 1..N:
                if j == k: continue
                if dp[i-1][k] - P[j] >= t:
                    dp[i][j] = max(dp[i][j], dp[i-1][k] - P[j] + Q[j])
    var f = false
    for i in 1..N:
        if dp[D][i] > q:
            f = true
    if f:
        l = t
    else:
        r = t
echo l
            
0