結果

問題 No.1650 Moving Coins
ユーザー moharan627moharan627
提出日時 2021-08-20 22:00:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 1,785 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 65,924 KB
最終ジャッジ日時 2024-10-14 03:38:46
合計ジャッジ時間 13,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 273 ms
24,448 KB
testcase_04 AC 214 ms
20,992 KB
testcase_05 AC 255 ms
23,552 KB
testcase_06 AC 278 ms
24,832 KB
testcase_07 AC 284 ms
25,088 KB
testcase_08 AC 423 ms
49,052 KB
testcase_09 AC 423 ms
45,268 KB
testcase_10 AC 443 ms
50,464 KB
testcase_11 AC 448 ms
49,420 KB
testcase_12 AC 374 ms
39,784 KB
testcase_13 AC 377 ms
41,052 KB
testcase_14 AC 422 ms
46,736 KB
testcase_15 AC 356 ms
37,364 KB
testcase_16 AC 459 ms
50,912 KB
testcase_17 AC 456 ms
49,168 KB
testcase_18 AC 490 ms
52,932 KB
testcase_19 AC 598 ms
65,924 KB
testcase_20 AC 575 ms
64,196 KB
testcase_21 AC 589 ms
65,048 KB
testcase_22 AC 592 ms
64,188 KB
testcase_23 AC 581 ms
64,296 KB
testcase_24 AC 290 ms
25,088 KB
testcase_25 AC 285 ms
25,088 KB
testcase_26 AC 288 ms
43,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
INF = float('inf')
#10**20,2**63,float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
#from collections import defaultdict
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    A = LI()
    B = LI()
    Go = [[0,0] for _ in range(N)]
    for n in range(N):
        if A[n] < B[n]:
            Go[n][0] = "R"
            Go[n][1] = B[n]-A[n]
        elif A[n] > B[n]:
            Go[n][0] = "L"
            Go[n][1] = A[n] - B[n]
    #print(Go)
    i = 0
    from collections import deque
    Ope = deque()
    Num = 0
    Out = []
    while i < N:
        if Go[i][0] == "R":
            Ope.appendleft((i+1,"R",Go[i][1]))
        elif Go[i][0] == "L":
            while Ope:
                tmp = Ope.popleft()
                for _ in range(tmp[2]):
                    Num += 1
                    Out.append((tmp[0],tmp[1]))
                    #print(tmp[0],tmp[1])
            for _ in range(Go[i][1]):
                Num += 1
                Out.append((i+1,"L"))
        else:
            while Ope:
                tmp = Ope.popleft()
                for _ in range(tmp[2]):
                    Num += 1
                    Out.append((tmp[0],tmp[1]))
                    #print(tmp[0],tmp[1])
        i+=1
    while Ope:
        tmp = Ope.popleft()
        for _ in range(tmp[2]):
            Num += 1
            Out.append((tmp[0], tmp[1]))
            # print(tmp[0],tmp[1])
    print(Num)
    for out in Out:
        print(*out)
    return
solve()
#sys.setrecursionlimit(10 ** 6)#再帰関数ではコメントにしないこと!!
0