結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー anonymouslyanonymously
提出日時 2024-12-03 00:28:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,120 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-03 00:29:07
合計ジャッジ時間 18,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
27,728 KB
testcase_01 AC 238 ms
27,344 KB
testcase_02 AC 245 ms
27,088 KB
testcase_03 AC 247 ms
27,472 KB
testcase_04 AC 244 ms
27,728 KB
testcase_05 AC 270 ms
27,728 KB
testcase_06 AC 244 ms
27,472 KB
testcase_07 AC 239 ms
27,096 KB
testcase_08 AC 240 ms
27,480 KB
testcase_09 AC 266 ms
27,544 KB
testcase_10 AC 240 ms
27,480 KB
testcase_11 AC 237 ms
27,480 KB
testcase_12 AC 244 ms
27,608 KB
testcase_13 AC 236 ms
27,864 KB
testcase_14 AC 262 ms
27,992 KB
testcase_15 AC 241 ms
27,600 KB
testcase_16 AC 255 ms
27,736 KB
testcase_17 AC 251 ms
27,736 KB
testcase_18 AC 262 ms
27,480 KB
testcase_19 AC 249 ms
28,120 KB
testcase_20 AC 249 ms
27,480 KB
testcase_21 AC 240 ms
27,608 KB
testcase_22 AC 273 ms
27,608 KB
testcase_23 AC 248 ms
27,608 KB
testcase_24 AC 247 ms
27,992 KB
testcase_25 AC 243 ms
27,608 KB
testcase_26 AC 246 ms
27,992 KB
testcase_27 AC 270 ms
27,864 KB
testcase_28 AC 237 ms
27,352 KB
testcase_29 AC 248 ms
27,864 KB
testcase_30 AC 246 ms
27,224 KB
testcase_31 AC 267 ms
27,480 KB
testcase_32 AC 239 ms
27,864 KB
testcase_33 AC 244 ms
27,736 KB
testcase_34 AC 244 ms
27,992 KB
testcase_35 AC 263 ms
27,224 KB
testcase_36 AC 252 ms
27,352 KB
testcase_37 AC 245 ms
27,224 KB
testcase_38 AC 247 ms
27,352 KB
testcase_39 AC 246 ms
27,736 KB
testcase_40 AC 272 ms
27,352 KB
testcase_41 AC 241 ms
27,608 KB
testcase_42 AC 247 ms
27,864 KB
testcase_43 AC 243 ms
27,480 KB
testcase_44 AC 291 ms
27,480 KB
testcase_45 AC 261 ms
27,992 KB
testcase_46 AC 251 ms
27,608 KB
testcase_47 AC 242 ms
27,864 KB
testcase_48 AC 277 ms
27,992 KB
testcase_49 AC 241 ms
27,864 KB
testcase_50 AC 249 ms
27,480 KB
testcase_51 AC 244 ms
27,736 KB
testcase_52 AC 249 ms
27,864 KB
testcase_53 AC 270 ms
27,480 KB
testcase_54 AC 247 ms
27,480 KB
testcase_55 AC 243 ms
27,352 KB
testcase_56 AC 244 ms
27,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import Queue
N, Q = map(int, input().split())
Q0 = Queue()
for i in range(1, N + 1):
    Q0.put(i)
Q1 = Queue()
Q2 = Queue()
while Q0.qsize() > 1:
    l = Q0.get()
    r = Q0.get()
    print(f"? {l} {l} {r} {r}")
    x = int(input())
    if x == 1:
        Q1.put(l)
        Q2.put(r)
    elif x == 0:
        Q1.put(r)
        Q2.put(l)
    else:
        exit(-1)
if Q0.qsize() == 1:
    m = Q0.get()
    Q1.put(m)
    Q2.put(m)
while Q1.qsize() > 1:
    l = Q1.get()
    r = Q1.get()
    print(f"? {l} {l} {r} {r}")
    x = int(input())
    if x == 1:
        Q1.put(l)
    elif x == 0:
        Q1.put(r)
    else:
        exit(-1)
while Q2.qsize() > 1:
    l = Q2.get()
    r = Q2.get()
    print(f"? {l} {N} {r} {N}")
    x = int(input())
    if x == 1:
        Q2.put(r)
    elif x == 0:
        Q2.put(l)
    else:
        exit(-1)
L = Q1.get()
R = Q2.get()
print(f"! {L} {L} {R} {N}")
0