結果

問題 No.2542 Yokan for Two
ユーザー komkompikomkompi
提出日時 2023-11-25 13:44:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,952 KB
最終ジャッジ日時 2024-09-26 10:31:07
合計ジャッジ時間 9,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 43 ms
51,584 KB
testcase_03 AC 122 ms
87,424 KB
testcase_04 AC 100 ms
78,336 KB
testcase_05 AC 164 ms
101,100 KB
testcase_06 AC 55 ms
61,056 KB
testcase_07 AC 243 ms
132,480 KB
testcase_08 AC 112 ms
82,304 KB
testcase_09 AC 239 ms
130,432 KB
testcase_10 AC 83 ms
71,680 KB
testcase_11 AC 92 ms
74,368 KB
testcase_12 AC 139 ms
92,416 KB
testcase_13 AC 81 ms
70,400 KB
testcase_14 AC 255 ms
136,320 KB
testcase_15 AC 269 ms
139,648 KB
testcase_16 AC 258 ms
137,088 KB
testcase_17 AC 252 ms
134,656 KB
testcase_18 AC 271 ms
141,312 KB
testcase_19 AC 173 ms
104,832 KB
testcase_20 AC 166 ms
101,632 KB
testcase_21 AC 166 ms
101,248 KB
testcase_22 AC 169 ms
102,528 KB
testcase_23 AC 169 ms
103,496 KB
testcase_24 AC 68 ms
65,920 KB
testcase_25 AC 83 ms
69,888 KB
testcase_26 AC 80 ms
70,400 KB
testcase_27 AC 84 ms
71,296 KB
testcase_28 AC 85 ms
71,936 KB
testcase_29 AC 118 ms
84,224 KB
testcase_30 AC 262 ms
141,056 KB
testcase_31 AC 253 ms
140,544 KB
testcase_32 AC 257 ms
140,800 KB
testcase_33 AC 254 ms
141,184 KB
testcase_34 AC 259 ms
140,928 KB
testcase_35 AC 256 ms
141,184 KB
testcase_36 AC 254 ms
141,312 KB
testcase_37 AC 254 ms
140,800 KB
testcase_38 AC 257 ms
141,568 KB
testcase_39 AC 266 ms
141,312 KB
testcase_40 AC 257 ms
141,952 KB
testcase_41 AC 252 ms
140,544 KB
testcase_42 AC 254 ms
140,544 KB
testcase_43 AC 259 ms
140,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

L,N=map(int,input().split())
X=list(map(int,input().split()))

X=[0]+X+[L]

diff=[X[i+1]-X[i] for i in range(N+1)]

A=diff[0]
B=diff[-1]
diff=diff[1:-1]

dp=[[0 for i in range(L+1)] for j in range(N)]
dp[0][0]=1


for n in range(N-1):
    for l in range(L+1):
        dp[n+1][l]|=dp[n][l]
        if l+diff[n]<=L:
            dp[n+1][l+diff[n]]|=dp[n][l]

sum_diff=sum(diff)
ans=10**18
for l in range(L+1):
    if dp[-1][l]:
        ans=min(ans,abs(A+l-B-(sum_diff-l)))


print(ans)

0