結果

問題 No.1650 Moving Coins
ユーザー c-yanc-yan
提出日時 2021-08-20 22:49:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,356 KB
最終ジャッジ日時 2024-10-14 05:00:23
合計ジャッジ時間 14,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 190 ms
26,112 KB
testcase_04 AC 151 ms
22,144 KB
testcase_05 AC 174 ms
24,832 KB
testcase_06 AC 191 ms
26,368 KB
testcase_07 AC 192 ms
26,624 KB
testcase_08 AC 442 ms
39,396 KB
testcase_09 AC 446 ms
35,840 KB
testcase_10 AC 444 ms
40,412 KB
testcase_11 AC 466 ms
37,144 KB
testcase_12 AC 354 ms
32,300 KB
testcase_13 AC 350 ms
32,260 KB
testcase_14 AC 432 ms
36,068 KB
testcase_15 AC 326 ms
31,144 KB
testcase_16 AC 479 ms
38,436 KB
testcase_17 AC 454 ms
37,832 KB
testcase_18 AC 505 ms
40,592 KB
testcase_19 AC 709 ms
39,472 KB
testcase_20 AC 693 ms
49,356 KB
testcase_21 AC 720 ms
41,656 KB
testcase_22 AC 711 ms
49,340 KB
testcase_23 AC 705 ms
49,340 KB
testcase_24 AC 194 ms
26,496 KB
testcase_25 AC 189 ms
26,496 KB
testcase_26 AC 179 ms
38,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

def is_movable(n):
    if A[n] == B[n]:
        return False
    elif A[n] < B[n]:
        if n == N - 1:
            return True
        else:
            return B[n] < A[n + 1]
    elif A[n] > B[n]:
        if n == 0:
            return True
        else:
            return B[n] > A[n - 1]

q = deque([])
for i in range(N):
    if A[i] == B[i]:
        continue
    q.append(i)

result = []
while q:
    #print("*A", *A)
    i = q.popleft()
    #print(i)
    if not is_movable(i):
        continue
    #print(i, "is movable")
    if A[i] < B[i]:
        for j in range(B[i] - A[i]):
            result.append('%d R' % (i + 1))
    elif A[i] > B[i]:
        for j in range(A[i] - B[i]):
            result.append('%d L' % (i + 1))
    A[i] = B[i]
    if i != 0:
        q.append(i - 1)
    if i != N - 1:
        q.append(i + 1)
print(len(result))
print(*result, sep='\n')
0