結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー ntudantuda
提出日時 2024-12-04 14:58:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,496 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-04 14:59:00
合計ジャッジ時間 23,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
91,232 KB
testcase_01 AC 323 ms
90,464 KB
testcase_02 AC 334 ms
90,720 KB
testcase_03 AC 334 ms
90,456 KB
testcase_04 AC 331 ms
91,392 KB
testcase_05 AC 328 ms
90,720 KB
testcase_06 AC 335 ms
91,104 KB
testcase_07 AC 322 ms
91,112 KB
testcase_08 AC 324 ms
91,240 KB
testcase_09 AC 354 ms
90,600 KB
testcase_10 AC 324 ms
91,240 KB
testcase_11 AC 326 ms
90,728 KB
testcase_12 AC 358 ms
91,112 KB
testcase_13 AC 324 ms
91,264 KB
testcase_14 AC 326 ms
91,112 KB
testcase_15 AC 323 ms
90,856 KB
testcase_16 AC 323 ms
90,984 KB
testcase_17 AC 329 ms
91,496 KB
testcase_18 AC 325 ms
90,216 KB
testcase_19 AC 323 ms
90,728 KB
testcase_20 AC 320 ms
90,344 KB
testcase_21 AC 326 ms
90,728 KB
testcase_22 AC 321 ms
90,856 KB
testcase_23 AC 331 ms
90,968 KB
testcase_24 AC 329 ms
90,728 KB
testcase_25 AC 327 ms
90,984 KB
testcase_26 AC 327 ms
90,600 KB
testcase_27 AC 324 ms
91,240 KB
testcase_28 AC 325 ms
90,472 KB
testcase_29 AC 326 ms
90,984 KB
testcase_30 AC 356 ms
90,600 KB
testcase_31 AC 324 ms
90,984 KB
testcase_32 AC 324 ms
90,600 KB
testcase_33 AC 323 ms
90,856 KB
testcase_34 AC 324 ms
90,776 KB
testcase_35 AC 324 ms
90,728 KB
testcase_36 AC 331 ms
91,040 KB
testcase_37 AC 360 ms
90,728 KB
testcase_38 AC 325 ms
90,472 KB
testcase_39 AC 320 ms
90,472 KB
testcase_40 AC 320 ms
91,112 KB
testcase_41 AC 324 ms
91,368 KB
testcase_42 AC 328 ms
90,856 KB
testcase_43 AC 321 ms
91,368 KB
testcase_44 AC 339 ms
90,984 KB
testcase_45 AC 327 ms
90,344 KB
testcase_46 AC 324 ms
90,336 KB
testcase_47 AC 323 ms
90,976 KB
testcase_48 AC 322 ms
90,976 KB
testcase_49 AC 322 ms
90,208 KB
testcase_50 AC 320 ms
90,592 KB
testcase_51 AC 321 ms
90,712 KB
testcase_52 AC 338 ms
90,848 KB
testcase_53 AC 322 ms
91,360 KB
testcase_54 AC 327 ms
91,360 KB
testcase_55 AC 326 ms
90,464 KB
testcase_56 AC 320 ms
90,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

def check(l0, r0, l1, r1):
    print("?", l0, r0, l1, r1)
    x = int(input())
    if x == -1:
        exit()
    return x == 1

L = list(range(1, N + 1))
L2 = []
L3 = []
while L:
    x = L.pop()
    if L:
        y = L.pop()
        if check(x, N, y, N):
            L2.append(x)
            L3.append(y)
        else:
            L2.append(y)
            L3.append(x)
    else:
        L2.append(x)
        L3.append(x)

L = L2
while len(L) > 1:
    L2 = []
    while L:
        x = L.pop()
        if L:
            y = L.pop()
            if check(x, x, y, y):
                L2.append(x)
            else:
                L2.append(y)
        else:
            L2.append(x)
    L = L2
ans = [L[0], L[0]]

L = L3
while len(L) > 1:
    L2 = []
    while L:
        x = L.pop()
        if L:
            y = L.pop()
            if check(x, N, y, N):
                L2.append(y)
            else:
                L2.append(x)
        else:
            L2.append(x)
    L = L2
ans += [L[0], N]
print("!", *ans)
0