結果

問題 No.2840 RGB Plates
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 22:58:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,052 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 551,384 KB
最終ジャッジ日時 2024-08-09 22:59:08
合計ジャッジ時間 36,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
80,912 KB
testcase_01 AC 106 ms
80,768 KB
testcase_02 AC 144 ms
82,128 KB
testcase_03 AC 104 ms
80,512 KB
testcase_04 TLE -
testcase_05 AC 136 ms
82,304 KB
testcase_06 WA -
testcase_07 AC 137 ms
82,492 KB
testcase_08 AC 151 ms
82,944 KB
testcase_09 MLE -
testcase_10 AC 140 ms
82,432 KB
testcase_11 AC 1,754 ms
462,716 KB
testcase_12 AC 1,135 ms
322,048 KB
testcase_13 AC 1,600 ms
429,372 KB
testcase_14 AC 1,435 ms
395,648 KB
testcase_15 AC 1,321 ms
362,972 KB
testcase_16 AC 1,599 ms
423,424 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 416 ms
141,828 KB
testcase_23 AC 349 ms
132,004 KB
testcase_24 AC 449 ms
153,392 KB
testcase_25 AC 1,515 ms
370,340 KB
testcase_26 AC 1,160 ms
290,816 KB
testcase_27 AC 1,193 ms
297,204 KB
testcase_28 AC 1,494 ms
357,952 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()
a.sort(reverse=True)
dp = [[[-inf] * 10001 for _ in range(n + 1)] for _ in range(2)]

dp[0][0][0] = 0
for i in range(n):
    for j in range(10001):
        dp[0][i + 1][j] = max(dp[0][i + 1][j], dp[0][i][j] + a[i])
        dp[1][i + 1][j] = max(dp[1][i + 1][j], dp[1][i][j] + a[i])
        dp[1][i + 1][abs(j - a[i])] = max(dp[1][i + 1][abs(j - a[i])], dp[1][i][j])
        dp[1][i + 1][abs(j - a[i])] = max(dp[1][i + 1][abs(j - a[i])], dp[0][i][j])
        if j + a[i] <= 10000:
            dp[1][i + 1][j + a[i]] = max(dp[1][i + 1][j + a[i]], dp[1][i][j])
            dp[1][i + 1][j + a[i]] = max(dp[1][i + 1][j + a[i]], dp[0][i][j])

print(-1 if dp[1][n][0] <= 0 else dp[1][n][0])
0