結果

問題 No.1386 Range add Simulation
ユーザー MitarushiMitarushi
提出日時 2021-02-06 00:00:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 1,703 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,996 KB
最終ジャッジ日時 2024-07-04 13:11:01
合計ジャッジ時間 29,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 71 ms
70,016 KB
testcase_02 AC 73 ms
69,504 KB
testcase_03 AC 74 ms
70,400 KB
testcase_04 AC 71 ms
69,888 KB
testcase_05 AC 82 ms
74,624 KB
testcase_06 AC 281 ms
103,400 KB
testcase_07 AC 240 ms
99,632 KB
testcase_08 AC 267 ms
99,856 KB
testcase_09 AC 244 ms
99,660 KB
testcase_10 AC 245 ms
101,888 KB
testcase_11 AC 366 ms
119,332 KB
testcase_12 AC 380 ms
122,348 KB
testcase_13 AC 353 ms
119,728 KB
testcase_14 AC 365 ms
119,616 KB
testcase_15 AC 390 ms
122,228 KB
testcase_16 AC 393 ms
122,480 KB
testcase_17 AC 381 ms
122,292 KB
testcase_18 AC 349 ms
121,456 KB
testcase_19 AC 349 ms
120,048 KB
testcase_20 AC 453 ms
125,996 KB
testcase_21 AC 426 ms
119,576 KB
testcase_22 AC 382 ms
125,188 KB
testcase_23 AC 373 ms
119,816 KB
testcase_24 AC 376 ms
122,344 KB
testcase_25 AC 387 ms
122,416 KB
testcase_26 AC 358 ms
122,476 KB
testcase_27 AC 370 ms
125,308 KB
testcase_28 AC 356 ms
122,956 KB
testcase_29 AC 368 ms
121,032 KB
testcase_30 AC 361 ms
119,592 KB
testcase_31 AC 342 ms
119,500 KB
testcase_32 AC 356 ms
119,768 KB
testcase_33 AC 323 ms
117,480 KB
testcase_34 AC 324 ms
117,116 KB
testcase_35 AC 39 ms
51,968 KB
testcase_36 AC 110 ms
76,544 KB
testcase_37 AC 103 ms
76,032 KB
testcase_38 AC 125 ms
76,788 KB
testcase_39 AC 113 ms
76,664 KB
testcase_40 AC 346 ms
122,564 KB
testcase_41 AC 342 ms
122,920 KB
testcase_42 AC 347 ms
122,684 KB
testcase_43 AC 350 ms
122,656 KB
testcase_44 AC 349 ms
122,968 KB
testcase_45 AC 365 ms
124,452 KB
testcase_46 AC 366 ms
122,676 KB
testcase_47 AC 388 ms
124,532 KB
testcase_48 AC 358 ms
124,460 KB
testcase_49 AC 361 ms
122,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())

print_cache = []


def print_c(*args):
    print_cache.append(args)


def flush():
    print(len(print_cache))
    for args in print_cache:
        print(*args)


def doubling(x, i):
    flag = False
    t = True
    if x < 0:
        x = abs(x)
        t = False
    for j in range(x.bit_length())[::-1]:
        if flag:
            print_c(3, i+1, i+1)
        else:
            flag = True
        if (x >> j) & 1 == 1:
            if t:
                print_c(1, i+1)
            else:
                print_c(2, i+1)


if n <= 10:
    a = [0] * n
    for _ in range(q):
        c, s = map(int, input().split())
        s -= 1
        if c == 1:
            for j in range(s, n):
                a[j] += (j-s+1)**2
        else:
            for j in range(s+1):
                a[j] += (s-j+1)**2
    for i in range(n):
        doubling(a[i], i)
else:
    a = [0] * n
    b = [0] * 5
    for _ in range(q):
        c, s = map(int, input().split())
        s -= 1
        if c == 1:
            a[s] += 1
            if s+1 < n:
                a[s+1] += 1

            for i in range(5):
                if s <= i:
                    b[i] += (i-s+1)**2
        else:
            if s+2 < n:
                a[s+2] -= 1
            if s+3 < n:
                a[s+3] -= 1

            for i in range(5):
                if i <= s:
                    b[i] += (s-i+1)**2

    for i in range(3):
        for j in range(i+1, 5)[::-1]:
            b[j] -= b[j-1]

    for i in range(5):
        doubling(b[i], i)
    for i in range(5, n):
        doubling(a[i], i)

    for i in range(3)[::-1]:
        for j in range(i+1, n):
            print_c(3, j+1, j)

flush()
0