結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,460 KB
testcase_01 AC 38 ms
53,460 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 45 ms
59,836 KB
testcase_04 AC 54 ms
64,168 KB
testcase_05 WA -
testcase_06 AC 38 ms
53,460 KB
testcase_07 AC 63 ms
66,256 KB
testcase_08 WA -
testcase_09 AC 55 ms
64,168 KB
testcase_10 AC 54 ms
64,172 KB
testcase_11 AC 53 ms
64,168 KB
testcase_12 WA -
testcase_13 AC 51 ms
64,172 KB
testcase_14 AC 45 ms
59,888 KB
testcase_15 AC 44 ms
59,888 KB
testcase_16 AC 45 ms
59,888 KB
testcase_17 AC 44 ms
59,888 KB
testcase_18 AC 44 ms
59,888 KB
testcase_19 AC 45 ms
59,888 KB
testcase_20 AC 43 ms
59,888 KB
testcase_21 AC 43 ms
59,888 KB
testcase_22 AC 44 ms
59,888 KB
testcase_23 AC 44 ms
59,888 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 38 ms
53,460 KB
testcase_29 WA -
testcase_30 AC 44 ms
59,852 KB
testcase_31 AC 43 ms
59,852 KB
testcase_32 AC 44 ms
59,852 KB
testcase_33 AC 44 ms
59,852 KB
testcase_34 AC 43 ms
59,852 KB
testcase_35 AC 44 ms
59,852 KB
testcase_36 AC 43 ms
59,852 KB
testcase_37 AC 44 ms
59,852 KB
testcase_38 AC 50 ms
62,108 KB
testcase_39 AC 58 ms
64,180 KB
testcase_40 AC 58 ms
66,268 KB
testcase_41 AC 44 ms
59,888 KB
testcase_42 AC 44 ms
59,888 KB
testcase_43 AC 44 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)]
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