結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー mkawa2mkawa2
提出日時 2024-02-23 22:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 1,174 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 117,120 KB
最終ジャッジ日時 2024-09-29 07:49:37
合計ジャッジ時間 38,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 368 ms
80,128 KB
testcase_02 AC 358 ms
80,000 KB
testcase_03 AC 356 ms
80,640 KB
testcase_04 AC 411 ms
98,688 KB
testcase_05 AC 411 ms
101,120 KB
testcase_06 AC 388 ms
102,912 KB
testcase_07 AC 408 ms
107,052 KB
testcase_08 AC 428 ms
107,008 KB
testcase_09 AC 460 ms
107,068 KB
testcase_10 AC 412 ms
107,264 KB
testcase_11 AC 409 ms
107,424 KB
testcase_12 AC 422 ms
106,624 KB
testcase_13 AC 440 ms
108,544 KB
testcase_14 AC 413 ms
116,736 KB
testcase_15 AC 421 ms
114,304 KB
testcase_16 AC 413 ms
106,368 KB
testcase_17 AC 415 ms
111,480 KB
testcase_18 AC 435 ms
110,720 KB
testcase_19 AC 414 ms
107,776 KB
testcase_20 AC 419 ms
112,728 KB
testcase_21 AC 415 ms
113,632 KB
testcase_22 AC 416 ms
113,728 KB
testcase_23 AC 407 ms
113,544 KB
testcase_24 AC 435 ms
112,512 KB
testcase_25 AC 433 ms
113,776 KB
testcase_26 AC 396 ms
113,536 KB
testcase_27 AC 412 ms
112,000 KB
testcase_28 AC 412 ms
112,384 KB
testcase_29 AC 421 ms
111,744 KB
testcase_30 AC 416 ms
113,288 KB
testcase_31 AC 414 ms
112,428 KB
testcase_32 AC 423 ms
113,584 KB
testcase_33 AC 394 ms
113,728 KB
testcase_34 AC 404 ms
113,752 KB
testcase_35 AC 403 ms
112,780 KB
testcase_36 AC 426 ms
113,964 KB
testcase_37 AC 413 ms
112,376 KB
testcase_38 AC 418 ms
112,464 KB
testcase_39 AC 408 ms
113,740 KB
testcase_40 AC 322 ms
117,120 KB
testcase_41 AC 368 ms
116,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import defaultdict

def solve():
    n,L=LI()
    xy=LLI(n)
    h = L//round(n**0.5)
    i2xy=defaultdict(list)
    for x,y in xy:
        i=x//h
        i2xy[i].append((x,y))
    ans=[]
    rev=0
    for i in sorted(i2xy):
        i2xy[i].sort(key=lambda x:x[1],reverse=rev)
        rev^=1
        ans+=i2xy[i]

    print(len(ans))
    for x,y in ans:print(x,y)

for _ in range(II()):solve()
0