結果

問題 No.1650 Moving Coins
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-20 21:52:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 66,748 KB
最終ジャッジ日時 2024-10-14 03:23:46
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 37 ms
13,952 KB
testcase_04 AC 34 ms
13,028 KB
testcase_05 AC 35 ms
13,696 KB
testcase_06 AC 37 ms
13,952 KB
testcase_07 AC 37 ms
14,080 KB
testcase_08 AC 268 ms
37,608 KB
testcase_09 AC 248 ms
37,832 KB
testcase_10 AC 268 ms
39,592 KB
testcase_11 AC 279 ms
38,836 KB
testcase_12 AC 167 ms
29,968 KB
testcase_13 AC 177 ms
29,812 KB
testcase_14 AC 253 ms
36,876 KB
testcase_15 AC 150 ms
26,912 KB
testcase_16 AC 311 ms
41,920 KB
testcase_17 AC 309 ms
40,920 KB
testcase_18 AC 328 ms
43,884 KB
testcase_19 AC 509 ms
66,748 KB
testcase_20 AC 543 ms
65,536 KB
testcase_21 AC 500 ms
65,380 KB
testcase_22 AC 586 ms
65,444 KB
testcase_23 AC 612 ms
65,572 KB
testcase_24 AC 38 ms
13,824 KB
testcase_25 AC 38 ms
13,816 KB
testcase_26 AC 198 ms
40,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

U = 10 ** 7
N = int(input())
A = [-1] + list(map(int, input().split())) + [U]
B = [-1] + list(map(int, input().split())) + [U]


answer = []
i = 0
while i <= N:
    while i <= N and A[i] == B[i]:
        i += 1

    # 左寄せ
    while i <= N and A[i] > B[i]:
        answer.append((i, B[i] - A[i]))
        i += 1

    while i <= N and A[i] == B[i]:
        i += 1

    # 右寄せ
    tmp = []
    while i <= N and A[i] < B[i]:
        tmp.append((i, B[i] - A[i]))
        i += 1
    answer.extend(tmp[::-1])

ans = []
cnt = 0
for i, d in answer:
    if d > 0:
        direction = "R"
    else:
        d = -d
        direction = "L"
    cnt += d
    ans.extend(
        ["{} {}".format(i, direction)] * d
    )

print(len(ans))
print("\n".join(ans))
0