結果

問題 No.2542 Yokan for Two
ユーザー PNJPNJ
提出日時 2023-11-24 22:11:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 823 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 66,260 KB
最終ジャッジ日時 2023-11-24 22:11:41
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,460 KB
testcase_01 WA -
testcase_02 AC 39 ms
53,460 KB
testcase_03 AC 45 ms
59,836 KB
testcase_04 AC 56 ms
64,168 KB
testcase_05 WA -
testcase_06 AC 40 ms
53,460 KB
testcase_07 AC 56 ms
66,256 KB
testcase_08 WA -
testcase_09 AC 53 ms
64,168 KB
testcase_10 AC 50 ms
64,168 KB
testcase_11 AC 51 ms
64,168 KB
testcase_12 WA -
testcase_13 AC 50 ms
64,172 KB
testcase_14 AC 43 ms
59,888 KB
testcase_15 AC 42 ms
59,888 KB
testcase_16 AC 43 ms
59,888 KB
testcase_17 AC 43 ms
59,888 KB
testcase_18 AC 43 ms
59,888 KB
testcase_19 AC 42 ms
59,888 KB
testcase_20 AC 42 ms
59,888 KB
testcase_21 AC 42 ms
59,888 KB
testcase_22 AC 45 ms
59,888 KB
testcase_23 AC 45 ms
59,888 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 36 ms
53,460 KB
testcase_28 AC 40 ms
53,460 KB
testcase_29 AC 46 ms
62,116 KB
testcase_30 AC 45 ms
61,968 KB
testcase_31 AC 45 ms
61,968 KB
testcase_32 AC 45 ms
61,968 KB
testcase_33 AC 45 ms
61,968 KB
testcase_34 AC 45 ms
61,968 KB
testcase_35 AC 46 ms
61,968 KB
testcase_36 AC 45 ms
61,968 KB
testcase_37 AC 45 ms
61,968 KB
testcase_38 AC 48 ms
62,104 KB
testcase_39 AC 58 ms
66,260 KB
testcase_40 AC 55 ms
64,188 KB
testcase_41 AC 42 ms
59,888 KB
testcase_42 AC 45 ms
59,888 KB
testcase_43 AC 42 ms
59,888 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+1)]
dp_[0] = 0
l = L // 2
for i in range(N):
  x = X[i]
  if x <= l:
    dp_[i+1] = 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