結果

問題 No.1650 Moving Coins
ユーザー lloyzlloyz
提出日時 2021-12-20 22:43:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 969 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 223,180 KB
最終ジャッジ日時 2024-09-15 15:22:15
合計ジャッジ時間 13,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,264 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 211 ms
99,584 KB
testcase_04 AC 177 ms
92,928 KB
testcase_05 AC 195 ms
97,024 KB
testcase_06 AC 204 ms
100,096 KB
testcase_07 AC 209 ms
100,096 KB
testcase_08 AC 352 ms
169,040 KB
testcase_09 AC 467 ms
164,300 KB
testcase_10 AC 380 ms
171,960 KB
testcase_11 AC 575 ms
177,680 KB
testcase_12 AC 376 ms
138,572 KB
testcase_13 AC 419 ms
138,440 KB
testcase_14 AC 510 ms
163,000 KB
testcase_15 AC 296 ms
129,280 KB
testcase_16 AC 406 ms
183,856 KB
testcase_17 AC 423 ms
185,812 KB
testcase_18 AC 441 ms
197,952 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

L = [deque() for _ in range(n)]
for i in range(n - 1, -1, -1):
    if A[i] < B[i]:
        cnt = B[i] - A[i]
        for j in range(cnt):
            L[i].append((i + 1, 'R'))
    elif A[i] > B[i]:
        cnt = A[i] - B[i]
        for j in range(cnt):
            L[i].append((i + 1, 'L'))

ANS = []
flag = True
while flag:
    flag = False
    for i in range(n):
        if L[i]:
            if L[i][0][1] == 'R':
                if i < n - 1 and A[i] + 1 == A[i + 1]:
                    continue
                ANS.append(L[i].popleft())
                A[i] += 1
            elif L[i][0][1] == 'L':
                if i > 0 and A[i] - 1 == A[i - 1]:
                    continue
                ANS.append(L[i].popleft())
                A[i] -= 1
            flag = True

print(len(ANS))
for ind, direction in ANS:
    print(ind, direction)
0