結果

問題 No.1650 Moving Coins
ユーザー ThetaTheta
提出日時 2024-03-08 11:29:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 1,045 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,892 KB
最終ジャッジ日時 2024-09-29 18:45:53
合計ジャッジ時間 14,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 264 ms
24,448 KB
testcase_04 AC 210 ms
20,992 KB
testcase_05 AC 246 ms
23,424 KB
testcase_06 AC 275 ms
24,704 KB
testcase_07 AC 279 ms
24,832 KB
testcase_08 AC 386 ms
34,580 KB
testcase_09 AC 407 ms
33,920 KB
testcase_10 AC 383 ms
34,656 KB
testcase_11 AC 405 ms
35,144 KB
testcase_12 AC 352 ms
30,492 KB
testcase_13 AC 353 ms
30,944 KB
testcase_14 AC 391 ms
34,376 KB
testcase_15 AC 345 ms
28,964 KB
testcase_16 AC 420 ms
35,732 KB
testcase_17 AC 400 ms
34,700 KB
testcase_18 AC 434 ms
37,184 KB
testcase_19 AC 536 ms
41,056 KB
testcase_20 AC 473 ms
41,892 KB
testcase_21 AC 511 ms
41,796 KB
testcase_22 AC 548 ms
41,448 KB
testcase_23 AC 527 ms
41,468 KB
testcase_24 AC 276 ms
24,960 KB
testcase_25 AC 275 ms
24,960 KB
testcase_26 AC 197 ms
38,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    ctr = 0
    ops = []
    large_idx = -1
    for idx in range(N):
        tmp_idx = idx
        if A[tmp_idx] >= B[tmp_idx]:
            ctr += A[tmp_idx] - B[tmp_idx]
            for cur in range(A[tmp_idx] - B[tmp_idx]):
                ops.append((tmp_idx, "L"))
            A[tmp_idx] = B[tmp_idx]

            continue
        if tmp_idx >= large_idx:
            large_idx = -1
            for shift_idx in range(tmp_idx + 1, N):
                if A[shift_idx] >= B[shift_idx]:
                    large_idx = shift_idx
                    break
            else:
                large_idx = N
        for idx_2 in reversed(range(tmp_idx, large_idx)):
            ctr += B[idx_2] - A[idx_2]
            for _ in range(B[idx_2] - A[idx_2]):
                ops.append((idx_2, "R"))
            A[idx_2] = B[idx_2]
    print(ctr)
    for op_ in ops:
        print(op_[0] + 1, op_[1])


if __name__ == "__main__":
    main()
0