結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
52,224 KB
testcase_01 AC 49 ms
52,096 KB
testcase_02 AC 47 ms
51,968 KB
testcase_03 AC 65 ms
62,336 KB
testcase_04 AC 74 ms
64,768 KB
testcase_05 WA -
testcase_06 AC 47 ms
52,224 KB
testcase_07 AC 76 ms
65,408 KB
testcase_08 WA -
testcase_09 AC 74 ms
64,640 KB
testcase_10 AC 68 ms
63,104 KB
testcase_11 AC 70 ms
63,744 KB
testcase_12 WA -
testcase_13 AC 69 ms
63,232 KB
testcase_14 AC 65 ms
61,824 KB
testcase_15 AC 65 ms
61,696 KB
testcase_16 AC 64 ms
61,440 KB
testcase_17 AC 63 ms
61,696 KB
testcase_18 AC 65 ms
61,824 KB
testcase_19 AC 63 ms
61,696 KB
testcase_20 AC 65 ms
61,952 KB
testcase_21 AC 65 ms
61,952 KB
testcase_22 AC 64 ms
61,568 KB
testcase_23 AC 65 ms
62,208 KB
testcase_24 AC 48 ms
52,352 KB
testcase_25 AC 48 ms
52,096 KB
testcase_26 AC 49 ms
52,096 KB
testcase_27 AC 49 ms
52,224 KB
testcase_28 AC 49 ms
52,352 KB
testcase_29 WA -
testcase_30 AC 65 ms
61,696 KB
testcase_31 AC 66 ms
61,568 KB
testcase_32 AC 65 ms
61,696 KB
testcase_33 AC 64 ms
61,440 KB
testcase_34 AC 65 ms
61,824 KB
testcase_35 AC 65 ms
61,440 KB
testcase_36 AC 65 ms
61,696 KB
testcase_37 AC 65 ms
61,440 KB
testcase_38 AC 63 ms
63,232 KB
testcase_39 AC 66 ms
64,896 KB
testcase_40 AC 65 ms
64,640 KB
testcase_41 AC 57 ms
61,952 KB
testcase_42 AC 57 ms
61,440 KB
testcase_43 AC 57 ms
62,208 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