結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,460 KB
testcase_01 AC 38 ms
53,460 KB
testcase_02 AC 39 ms
53,460 KB
testcase_03 AC 51 ms
62,104 KB
testcase_04 AC 58 ms
66,252 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,460 KB
testcase_07 AC 59 ms
66,252 KB
testcase_08 WA -
testcase_09 AC 58 ms
66,252 KB
testcase_10 AC 53 ms
64,172 KB
testcase_11 AC 54 ms
64,168 KB
testcase_12 WA -
testcase_13 AC 53 ms
64,172 KB
testcase_14 AC 49 ms
62,092 KB
testcase_15 AC 50 ms
62,092 KB
testcase_16 AC 49 ms
62,092 KB
testcase_17 AC 50 ms
62,092 KB
testcase_18 AC 50 ms
62,092 KB
testcase_19 AC 51 ms
62,092 KB
testcase_20 AC 50 ms
62,092 KB
testcase_21 AC 50 ms
62,092 KB
testcase_22 AC 50 ms
62,092 KB
testcase_23 AC 56 ms
62,092 KB
testcase_24 AC 38 ms
53,460 KB
testcase_25 AC 39 ms
53,460 KB
testcase_26 AC 38 ms
53,460 KB
testcase_27 AC 38 ms
53,460 KB
testcase_28 AC 40 ms
53,460 KB
testcase_29 WA -
testcase_30 AC 50 ms
62,084 KB
testcase_31 AC 49 ms
62,084 KB
testcase_32 AC 49 ms
62,084 KB
testcase_33 AC 50 ms
62,084 KB
testcase_34 AC 50 ms
62,084 KB
testcase_35 AC 50 ms
62,084 KB
testcase_36 AC 50 ms
62,084 KB
testcase_37 AC 50 ms
62,084 KB
testcase_38 AC 54 ms
64,176 KB
testcase_39 AC 58 ms
66,248 KB
testcase_40 AC 56 ms
64,168 KB
testcase_41 AC 52 ms
62,092 KB
testcase_42 AC 50 ms
62,092 KB
testcase_43 AC 49 ms
62,092 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+1)]
dp[0] = 0
l = L // 2
for i in range(N):
  x = X[i]
  if i == 0:
    if x <= l:
      dp[i+1] = x
      continue
  for j in range(i):
    xx = X[j]
    if j == 0:
      if x <= l:
        dp[i+1] = x
    for k in range(1,j+1):
      if dp[k] == -1:
        continue
      a = dp[k] + (x - xx)
      if a <= l:
        dp[i+1] = max(dp[i+1],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 i == 0:
    if x <= l:
      dp_[i+1] = x
      continue
  for j in range(i):
    xx = X[j]
    if j == 0:
      if x <= l:
        dp_[i+1] = x
    for k in range(1,j+1):
      if dp_[k] == -1:
        continue
      a = dp_[k] + (x - xx)
      if a <= l:
        dp_[i+1] = max(dp_[i+1],a)

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