結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 98 ms
78,080 KB
testcase_02 AC 96 ms
77,184 KB
testcase_03 AC 113 ms
77,696 KB
testcase_04 AC 100 ms
77,824 KB
testcase_05 AC 109 ms
77,440 KB
testcase_06 AC 265 ms
103,664 KB
testcase_07 AC 244 ms
99,828 KB
testcase_08 AC 249 ms
100,488 KB
testcase_09 AC 251 ms
100,272 KB
testcase_10 AC 253 ms
102,212 KB
testcase_11 AC 374 ms
119,596 KB
testcase_12 AC 398 ms
122,860 KB
testcase_13 AC 357 ms
119,476 KB
testcase_14 AC 364 ms
119,612 KB
testcase_15 AC 386 ms
122,608 KB
testcase_16 AC 382 ms
122,996 KB
testcase_17 AC 381 ms
122,608 KB
testcase_18 AC 367 ms
121,712 KB
testcase_19 AC 372 ms
119,664 KB
testcase_20 AC 395 ms
126,336 KB
testcase_21 AC 376 ms
119,952 KB
testcase_22 AC 405 ms
125,620 KB
testcase_23 AC 374 ms
120,108 KB
testcase_24 AC 425 ms
122,992 KB
testcase_25 AC 395 ms
122,808 KB
testcase_26 AC 377 ms
122,872 KB
testcase_27 AC 385 ms
125,564 KB
testcase_28 AC 427 ms
122,712 KB
testcase_29 AC 428 ms
120,904 KB
testcase_30 AC 430 ms
119,600 KB
testcase_31 AC 375 ms
120,032 KB
testcase_32 AC 378 ms
120,036 KB
testcase_33 AC 369 ms
117,740 KB
testcase_34 AC 364 ms
117,488 KB
testcase_35 AC 42 ms
52,312 KB
testcase_36 AC 119 ms
77,312 KB
testcase_37 AC 109 ms
76,160 KB
testcase_38 AC 134 ms
76,800 KB
testcase_39 AC 121 ms
77,056 KB
testcase_40 AC 424 ms
122,804 KB
testcase_41 AC 353 ms
123,180 KB
testcase_42 AC 362 ms
122,812 KB
testcase_43 AC 416 ms
123,276 KB
testcase_44 AC 369 ms
123,352 KB
testcase_45 AC 429 ms
124,580 KB
testcase_46 AC 374 ms
122,944 KB
testcase_47 AC 375 ms
124,924 KB
testcase_48 AC 381 ms
124,580 KB
testcase_49 AC 380 ms
122,948 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 <= 10000:
    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