結果

問題 No.2542 Yokan for Two
ユーザー flygonflygon
提出日時 2023-11-24 21:44:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,148 ms / 2,000 ms
コード長 1,006 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 261,308 KB
最終ジャッジ日時 2024-09-26 09:04:58
合計ジャッジ時間 28,353 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,528 KB
testcase_01 AC 47 ms
54,656 KB
testcase_02 AC 47 ms
54,656 KB
testcase_03 AC 433 ms
161,120 KB
testcase_04 AC 233 ms
96,640 KB
testcase_05 AC 513 ms
188,544 KB
testcase_06 AC 100 ms
83,200 KB
testcase_07 AC 841 ms
257,920 KB
testcase_08 AC 347 ms
131,624 KB
testcase_09 AC 919 ms
259,028 KB
testcase_10 AC 169 ms
91,264 KB
testcase_11 AC 219 ms
92,416 KB
testcase_12 AC 482 ms
159,388 KB
testcase_13 AC 158 ms
89,344 KB
testcase_14 AC 883 ms
259,756 KB
testcase_15 AC 935 ms
259,620 KB
testcase_16 AC 916 ms
257,968 KB
testcase_17 AC 899 ms
259,288 KB
testcase_18 AC 1,057 ms
259,656 KB
testcase_19 AC 547 ms
156,852 KB
testcase_20 AC 493 ms
147,488 KB
testcase_21 AC 500 ms
147,364 KB
testcase_22 AC 506 ms
149,680 KB
testcase_23 AC 506 ms
152,040 KB
testcase_24 AC 148 ms
102,144 KB
testcase_25 AC 185 ms
114,048 KB
testcase_26 AC 183 ms
114,048 KB
testcase_27 AC 202 ms
114,236 KB
testcase_28 AC 208 ms
117,212 KB
testcase_29 AC 376 ms
148,704 KB
testcase_30 AC 931 ms
260,960 KB
testcase_31 AC 949 ms
258,472 KB
testcase_32 AC 1,058 ms
257,980 KB
testcase_33 AC 966 ms
260,728 KB
testcase_34 AC 948 ms
260,916 KB
testcase_35 AC 1,148 ms
257,888 KB
testcase_36 AC 1,138 ms
257,828 KB
testcase_37 AC 932 ms
261,176 KB
testcase_38 AC 948 ms
261,308 KB
testcase_39 AC 958 ms
261,220 KB
testcase_40 AC 947 ms
257,888 KB
testcase_41 AC 945 ms
257,960 KB
testcase_42 AC 952 ms
257,960 KB
testcase_43 AC 947 ms
261,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

l,n = map(int,input().split())
x =[0] + list(map(int,input().split()))
x.append(l)
INF = 10**15
dp = [0]*((l*2+50)*2)
c = l+10
dp[c*2+1] = 1
for i in range(1,n+2):
    new = [0]*((l*2+50)*2)
    xi = x[i] - x[i-1]
    for j in range(l*2+50):
        for k in range(2):
            if k == 0:
                if j + xi < l*2+50:
                    new[(j+xi)*2+k] |= dp[j*2+k]
                if j -xi >= 0:
                    new[(j-xi)*2+(k^1)] |= dp[j*2+k]
            else:
                if j - xi >= 0 and i != 1:
                    new[(j-xi)*2+k] |= dp[j*2+k]
                if j + xi < l*2+50:
                    new[(j+xi)*2+(k^1)] |= dp[j*2+k]
    dp = new
    # print(dp)
mn = INF
for i in range(2*l+50):
    if dp[i*2+1]:
        mn = min(mn, abs(i-c))

print(mn)
0