結果

問題 No.270 next_permutation (1)
ユーザー maspymaspy
提出日時 2020-04-01 01:49:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,216 KB
最終ジャッジ日時 2024-06-25 17:02:05
合計ジャッジ時間 4,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
11,520 KB
testcase_01 AC 236 ms
13,568 KB
testcase_02 AC 262 ms
13,440 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 212 ms
12,928 KB
testcase_05 AC 215 ms
12,928 KB
testcase_06 AC 215 ms
12,928 KB
testcase_07 AC 87 ms
11,648 KB
testcase_08 AC 94 ms
11,904 KB
testcase_09 AC 233 ms
14,464 KB
testcase_10 AC 280 ms
23,996 KB
testcase_11 AC 511 ms
24,216 KB
testcase_12 AC 485 ms
24,124 KB
testcase_13 AC 214 ms
23,680 KB
testcase_14 AC 267 ms
23,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from bisect import bisect_left
import itertools

N, K = map(int, readline().split())
P = [0] + list(map(int, readline().split()))
B = [0] + list(map(int, readline().split()))

if K == 0:
    print(0)
    exit()

D = [sum(abs(x - y) for x, y in zip(P, B))]
for _ in range(K - 1):
    diff = 0
    Q = []
    while P[-2] > P[-1]:
        x = P.pop()
        diff -= abs(x - B[len(P)])
        Q.append(x)
    x = P.pop()
    diff -= abs(x - B[len(P)])
    Q.append(x)
    if not P[-1]:
        P = list(range(N + 1))
        D.append(sum(abs(x - y) for x, y in zip(P, B)))
        continue
    p = P.pop()
    diff -= abs(p - B[len(P)])
    n = bisect_left(Q, p)
    for x in itertools.chain([Q[n]], Q[:n], [p], Q[n + 1:]):
        diff += abs(x - B[len(P)])
        P.append(x)
    D.append(D[-1] + diff)
print(sum(D))
0