結果

問題 No.115 遠足のおやつ
ユーザー tcltktcltk
提出日時 2021-01-16 17:19:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,505 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 233,216 KB
最終ジャッジ日時 2024-11-27 21:26:05
合計ジャッジ時間 68,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
233,216 KB
testcase_01 AC 51 ms
17,920 KB
testcase_02 AC 41 ms
17,280 KB
testcase_03 AC 35 ms
191,488 KB
testcase_04 TLE -
testcase_05 AC 35 ms
121,600 KB
testcase_06 AC 34 ms
17,024 KB
testcase_07 AC 37 ms
222,976 KB
testcase_08 AC 49 ms
13,440 KB
testcase_09 AC 68 ms
14,976 KB
testcase_10 AC 72 ms
15,488 KB
testcase_11 AC 38 ms
12,032 KB
testcase_12 AC 53 ms
13,184 KB
testcase_13 AC 34 ms
11,776 KB
testcase_14 AC 98 ms
15,104 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 3,164 ms
140,708 KB
testcase_18 AC 37 ms
11,776 KB
testcase_19 AC 43 ms
12,288 KB
testcase_20 AC 40 ms
12,032 KB
testcase_21 AC 43 ms
12,544 KB
testcase_22 TLE -
testcase_23 AC 50 ms
12,288 KB
testcase_24 AC 1,888 ms
51,072 KB
testcase_25 AC 452 ms
34,304 KB
testcase_26 AC 97 ms
15,488 KB
testcase_27 TLE -
testcase_28 AC 982 ms
46,608 KB
testcase_29 AC 438 ms
25,856 KB
testcase_30 TLE -
testcase_31 AC 68 ms
13,568 KB
testcase_32 TLE -
testcase_33 AC 40 ms
12,160 KB
testcase_34 TLE -
testcase_35 AC 3,435 ms
53,760 KB
testcase_36 AC 80 ms
14,336 KB
testcase_37 TLE -
testcase_38 AC 448 ms
30,592 KB
testcase_39 AC 480 ms
31,488 KB
testcase_40 AC 36 ms
11,648 KB
testcase_41 AC 35 ms
11,648 KB
testcase_42 AC 35 ms
199,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """10 9 3
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N, D, K = map(int, input().split())

    dp = [[[False for _ in range(K+1)] for _ in range(D+1)] for _ in range(N+1)]
    dp[0][0][0] = True
    for n in range(0, N):
        for d in range(0, D+1):
            for k in range(0, K+1):
                if d + (n+1) <= D and k + 1 <= K:
                    dp[n+1][d+(n+1)][k+1] = dp[n][d+(n+1)][k+1] or dp[n][d][k]
                dp[n+1][d][k] = dp[n+1][d][k] or dp[n][d][k]

    result = []
    if dp[N][D][K]:
        q = collections.deque()
        q.appendleft((N, D, K, []))
        while q:
            p = q.pop()
            n = p[0]
            d = p[1]
            k = p[2]
            L = p[3]
            if n == 0 and d == 0 and k == 0:
                result.append(L)
            elif n > 0:
                if dp[n-1][d][k]:
                    q.appendleft((n-1, d, k, L))
                if d-n >= 0 and dp[n-1][d-n][k-1]:
                    q.appendleft((n-1, d-n, k-1, [n]+L))
        result.sort()
        print(*result[0])
    else:
        print(-1)


if __name__ == '__main__':
    main()
0