結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー amesyuamesyu
提出日時 2024-12-02 02:28:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,052 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 91,528 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-02 02:29:05
合計ジャッジ時間 22,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 321 ms
90,336 KB
testcase_03 WA -
testcase_04 AC 315 ms
90,680 KB
testcase_05 AC 347 ms
90,548 KB
testcase_06 AC 323 ms
90,208 KB
testcase_07 AC 306 ms
90,216 KB
testcase_08 AC 343 ms
90,984 KB
testcase_09 AC 307 ms
90,472 KB
testcase_10 AC 304 ms
90,936 KB
testcase_11 AC 310 ms
90,404 KB
testcase_12 AC 350 ms
90,856 KB
testcase_13 AC 309 ms
90,216 KB
testcase_14 AC 308 ms
90,472 KB
testcase_15 AC 329 ms
90,728 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 306 ms
90,144 KB
testcase_19 AC 307 ms
90,744 KB
testcase_20 AC 315 ms
90,664 KB
testcase_21 AC 317 ms
90,620 KB
testcase_22 AC 331 ms
90,472 KB
testcase_23 AC 310 ms
90,216 KB
testcase_24 AC 312 ms
91,112 KB
testcase_25 AC 336 ms
90,068 KB
testcase_26 AC 305 ms
90,344 KB
testcase_27 AC 306 ms
90,344 KB
testcase_28 AC 307 ms
90,472 KB
testcase_29 AC 330 ms
90,600 KB
testcase_30 AC 308 ms
90,216 KB
testcase_31 AC 304 ms
90,728 KB
testcase_32 AC 333 ms
90,056 KB
testcase_33 AC 308 ms
90,540 KB
testcase_34 AC 308 ms
90,216 KB
testcase_35 AC 306 ms
90,856 KB
testcase_36 AC 336 ms
90,712 KB
testcase_37 AC 298 ms
90,412 KB
testcase_38 AC 309 ms
89,832 KB
testcase_39 AC 331 ms
90,600 KB
testcase_40 AC 307 ms
91,028 KB
testcase_41 AC 308 ms
90,708 KB
testcase_42 AC 307 ms
90,344 KB
testcase_43 AC 334 ms
90,852 KB
testcase_44 AC 306 ms
90,848 KB
testcase_45 AC 305 ms
90,344 KB
testcase_46 AC 301 ms
90,232 KB
testcase_47 AC 303 ms
90,544 KB
testcase_48 AC 303 ms
90,968 KB
testcase_49 AC 303 ms
90,464 KB
testcase_50 AC 343 ms
90,336 KB
testcase_51 AC 301 ms
90,592 KB
testcase_52 AC 313 ms
90,720 KB
testcase_53 AC 309 ms
90,680 KB
testcase_54 AC 332 ms
90,760 KB
testcase_55 AC 304 ms
90,172 KB
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(l1, r1, l2, r2):
    print("?", l1 + 1, r1, l2 + 1, r2)
    return int(input())

n, q = map(int, input().split())
min_list = []
max_list = []
if n%2 == 1:
    min_list.append(n-1)
    max_list.append(n-1)

for i in range(n//2):
    x, y = 2 * i + 1, 2 * i
    if ask(y, n, x, n): x, y = y, x
    min_list.append(x)
    max_list.append(y)

while len(min_list) > 1:
    nxt_min_list = []
    size = len(min_list)
    if size%2 == 1: nxt_min_list.append(size-1)
    for i in range(size//2):
        x, y = min_list[2 * i + 1], min_list[2 * i]
        if ask(y, n, x, n): x, y = y, x
        nxt_min_list.append(x)
    min_list = nxt_min_list[::]

while len(max_list) > 1:
    nxt_max_list = []
    size = len(max_list)
    if size%2 == 1: nxt_max_list.append(size-1)
    for i in range(size//2):
        x, y = max_list[2 * i + 1], max_list[2 * i]
        if ask(y, n, x, n) == 0: x, y = y, x
        nxt_max_list.append(x)
    max_list = nxt_max_list[::]

l, r = min_list[0] + 1, min_list[0] + 1
L, R = max_list[0] + 1, n

print("!", l, r, L, R)
0