結果

問題 No.1267 Stop and Coin Game
ユーザー hir355hir355
提出日時 2020-10-23 23:46:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,445 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 326,236 KB
最終ジャッジ日時 2024-07-21 13:47:29
合計ジャッジ時間 11,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 54 ms
63,872 KB
testcase_06 AC 48 ms
60,032 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 129 ms
93,052 KB
testcase_09 AC 45 ms
59,264 KB
testcase_10 AC 790 ms
245,248 KB
testcase_11 AC 321 ms
130,304 KB
testcase_12 AC 117 ms
82,176 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 60 ms
65,792 KB
testcase_16 AC 1,314 ms
277,864 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 77 ms
74,112 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 47 ms
60,544 KB
testcase_21 AC 38 ms
52,608 KB
testcase_22 AC 75 ms
73,088 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 268 ms
147,920 KB
testcase_25 AC 952 ms
251,776 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 62 ms
68,224 KB
testcase_28 AC 39 ms
52,480 KB
testcase_29 AC 72 ms
71,424 KB
testcase_30 AC 544 ms
205,952 KB
testcase_31 AC 80 ms
75,008 KB
testcase_32 AC 90 ms
85,248 KB
testcase_33 AC 240 ms
145,280 KB
testcase_34 AC 692 ms
204,316 KB
testcase_35 AC 516 ms
214,108 KB
testcase_36 AC 39 ms
51,968 KB
testcase_37 AC 253 ms
112,896 KB
testcase_38 AC 1,445 ms
326,236 KB
testcase_39 AC 142 ms
83,328 KB
testcase_40 AC 39 ms
51,968 KB
testcase_41 AC 166 ms
90,988 KB
testcase_42 AC 39 ms
51,968 KB
testcase_43 AC 349 ms
130,304 KB
testcase_44 AC 39 ms
52,096 KB
testcase_45 AC 40 ms
51,712 KB
testcase_46 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, v = map(int, input().split())
a = list(map(int, input().split()))
if sum(a) <= v:
    print('Draw')
    exit(0)

g = [[] for _ in range(1 << n)]
inv = [0] * (1 << n)
for i in range(1, 1 << n):
    t = 0
    for j in range(n):
        if (i >> j) & 1:
            t += a[j]
    if t <= v:
        for j in range(n):
            if (i >> j) & 1:
                g[i].append(i - (1 << j))
                g[i - (1 << j)].append(i)
                inv[i - (1 << j)] += 1
s = []
for i in range(1 << n):
    if inv[i] == 0:
        s.append(i)
wl = [-1] * (1 << n)
while s:
    p = s.pop()
    for node in g[p]:
        if wl[node] == -1:
            inv[node] -= 1
            if inv[node] == 0:
                s.append(node)
        else:
            if wl[node] == 0:
                wl[p] = 1
    if wl[p] == -1:
        wl[p] = 0
if wl[0] == 0:
    print('Second')
else:
    print('First')
0