結果

問題 No.2542 Yokan for Two
ユーザー PNJPNJ
提出日時 2023-11-24 22:13:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-09-26 09:25:47
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 49 ms
59,648 KB
testcase_04 AC 58 ms
63,744 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 61 ms
64,256 KB
testcase_08 WA -
testcase_09 AC 60 ms
63,360 KB
testcase_10 AC 59 ms
63,104 KB
testcase_11 AC 55 ms
62,592 KB
testcase_12 WA -
testcase_13 AC 56 ms
62,336 KB
testcase_14 AC 47 ms
59,392 KB
testcase_15 AC 47 ms
59,008 KB
testcase_16 AC 47 ms
59,392 KB
testcase_17 AC 48 ms
59,264 KB
testcase_18 AC 48 ms
59,392 KB
testcase_19 AC 46 ms
59,008 KB
testcase_20 AC 48 ms
59,392 KB
testcase_21 AC 47 ms
59,008 KB
testcase_22 AC 48 ms
59,520 KB
testcase_23 AC 48 ms
59,136 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 40 ms
52,096 KB
testcase_26 AC 40 ms
52,608 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 42 ms
51,968 KB
testcase_29 WA -
testcase_30 AC 47 ms
59,136 KB
testcase_31 AC 48 ms
59,136 KB
testcase_32 AC 48 ms
59,264 KB
testcase_33 AC 51 ms
59,264 KB
testcase_34 AC 48 ms
59,264 KB
testcase_35 AC 47 ms
59,008 KB
testcase_36 AC 48 ms
59,136 KB
testcase_37 AC 46 ms
59,008 KB
testcase_38 AC 54 ms
61,440 KB
testcase_39 AC 62 ms
64,640 KB
testcase_40 AC 63 ms
65,024 KB
testcase_41 AC 47 ms
59,264 KB
testcase_42 AC 48 ms
59,648 KB
testcase_43 AC 48 ms
58,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().strip()

def Map():
  return list(map(int,input().split()))

L,N = Map()
X = Map()
dp = [-1 for i in range(N)]
l = L // 2
for i in range(N):
  x = X[i]
  if x <= l:
    dp[i] = x
    continue
  for j in range(i):
    xx = X[j]
    for k in range(j):
      if dp[k] == -1:
        continue
      a = dp[k] + (x - xx)
      if a <= l:
        dp[i] = max(dp[i],a)

Y = []
while len(X):
  x = X.pop()
  Y.append(L-x)
X = Y
dp_ = [-1 for i in range(N)]
l = L // 2
for i in range(N):
  x = X[i]
  if x <= l:
    dp_[i] = x
    continue
  for j in range(i):
    xx = X[j]
    for k in range(j):
      if dp_[k] == -1:
        continue
      a = dp_[k] + (x - xx)
      if a <= l:
        dp_[i] = max(dp_[i],a)

ans = max(max(dp),max(dp_))
ans = L - 2*ans
print(ans)
0