結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 23:03:37
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,061 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 556,288 KB
最終ジャッジ日時 2024-08-09 23:04:13
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
81,004 KB
testcase_01 AC 99 ms
80,232 KB
testcase_02 AC 131 ms
82,048 KB
testcase_03 AC 101 ms
80,128 KB
testcase_04 MLE -
testcase_05 AC 134 ms
82,260 KB
testcase_06 AC 134 ms
82,536 KB
testcase_07 AC 133 ms
82,552 KB
testcase_08 WA -
testcase_09 MLE -
testcase_10 AC 162 ms
82,324 KB
testcase_11 AC 1,737 ms
462,340 KB
testcase_12 AC 1,140 ms
321,856 KB
testcase_13 AC 1,622 ms
429,288 KB
testcase_14 AC 1,446 ms
395,672 KB
testcase_15 AC 1,289 ms
363,012 KB
testcase_16 AC 1,571 ms
423,352 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 375 ms
141,896 KB
testcase_23 AC 383 ms
131,104 KB
testcase_24 AC 887 ms
152,952 KB
testcase_25 AC 1,717 ms
370,460 KB
testcase_26 AC 1,043 ms
290,968 KB
testcase_27 AC 1,075 ms
297,064 KB
testcase_28 AC 1,378 ms
358,040 KB
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
import logging
from logging import debug, error, info, warning
logging.basicConfig(level=logging.DEBUG)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 31 - 1
mod = 998244353

n = ii()
a = li()
random.shuffle(a)
ans = -1
dp0 = [[-inf] * 10001 for _ in range(n + 1)]
dp1 = [[-inf] * 10001 for _ in range(n + 1)]
dp0[0][0] = 0
for i in range(n):
    for j in range(10001):
        dp0[i + 1][j] = max(dp0[i + 1][j], dp0[i][j] + a[i])
        dp1[i + 1][j] = max(dp1[i + 1][j], dp1[i][j] + a[i])
        dp1[i + 1][abs(j - a[i])] = max(dp1[i + 1][abs(j - a[i])], dp1[i][j])
        dp1[i + 1][abs(j - a[i])] = max(dp1[i + 1][abs(j - a[i])], dp0[i][j])
        if j + a[i] <= 10000:
            dp1[i + 1][j + a[i]] = max(dp1[i + 1][j + a[i]], dp1[i][j])
            dp1[i + 1][j + a[i]] = max(dp1[i + 1][j + a[i]], dp0[i][j])

ans = max(ans, -1 if dp1[n][0] <= 0 else dp1[n][0])
print(ans)
0