結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー hato336hato336
提出日時 2024-12-02 12:38:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,140 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 94,440 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-02 12:38:32
合計ジャッジ時間 20,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
93,536 KB
testcase_01 AC 296 ms
93,408 KB
testcase_02 AC 307 ms
93,596 KB
testcase_03 AC 304 ms
93,792 KB
testcase_04 AC 313 ms
93,408 KB
testcase_05 AC 297 ms
94,360 KB
testcase_06 AC 296 ms
93,736 KB
testcase_07 AC 318 ms
94,096 KB
testcase_08 AC 301 ms
93,716 KB
testcase_09 AC 295 ms
94,056 KB
testcase_10 AC 296 ms
93,852 KB
testcase_11 AC 300 ms
94,032 KB
testcase_12 AC 300 ms
94,060 KB
testcase_13 AC 296 ms
94,056 KB
testcase_14 AC 296 ms
93,780 KB
testcase_15 AC 292 ms
93,928 KB
testcase_16 AC 302 ms
93,416 KB
testcase_17 AC 298 ms
93,680 KB
testcase_18 AC 305 ms
93,780 KB
testcase_19 AC 328 ms
93,544 KB
testcase_20 AC 301 ms
93,896 KB
testcase_21 AC 301 ms
93,476 KB
testcase_22 AC 296 ms
93,544 KB
testcase_23 AC 299 ms
93,672 KB
testcase_24 AC 299 ms
94,056 KB
testcase_25 AC 296 ms
93,920 KB
testcase_26 AC 294 ms
93,964 KB
testcase_27 AC 301 ms
93,820 KB
testcase_28 AC 299 ms
93,672 KB
testcase_29 AC 294 ms
93,888 KB
testcase_30 AC 300 ms
93,580 KB
testcase_31 AC 302 ms
94,056 KB
testcase_32 AC 305 ms
94,440 KB
testcase_33 AC 295 ms
93,672 KB
testcase_34 AC 298 ms
93,568 KB
testcase_35 AC 295 ms
93,544 KB
testcase_36 AC 310 ms
94,152 KB
testcase_37 AC 295 ms
93,616 KB
testcase_38 AC 305 ms
93,672 KB
testcase_39 AC 297 ms
93,316 KB
testcase_40 AC 298 ms
93,892 KB
testcase_41 AC 302 ms
93,576 KB
testcase_42 AC 334 ms
94,184 KB
testcase_43 AC 302 ms
93,436 KB
testcase_44 AC 300 ms
93,288 KB
testcase_45 AC 298 ms
93,928 KB
testcase_46 AC 294 ms
93,792 KB
testcase_47 AC 311 ms
93,664 KB
testcase_48 AC 303 ms
94,084 KB
testcase_49 AC 307 ms
94,076 KB
testcase_50 AC 300 ms
94,088 KB
testcase_51 AC 301 ms
93,476 KB
testcase_52 AC 309 ms
93,596 KB
testcase_53 AC 327 ms
93,920 KB
testcase_54 AC 300 ms
93,280 KB
testcase_55 AC 299 ms
94,048 KB
testcase_56 AC 298 ms
94,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,random
n,q = map(int,input().split())
#p = [random.randint(0,10000) for i in range(1000)]
def query(a,b,c,d):
    print('?',a+1,b+1,c+1,d+1,flush=True)
    x = int(input())
    #x = 1 if p[a:b+1] < p[c:d+1] else 0
    return x
a = collections.deque(range(n))
b = collections.deque()
c = collections.deque()
for i in range(n//2):
    x = a.popleft()
    y = a.popleft()
    z = query(x,x,y,y)
    
    if z == 1:
        c.append(x)
        b.append(y)
    else:
        c.append(y)
        b.append(x)
a = c + a
while len(a) > 1:
    c = collections.deque()
    while len(a) > 1:
        x = a.popleft()
        y = a.popleft()
        z = query(x,x,y,y)
        if z == 1:
            c.append(x)
        else:
            c.append(y)
    a = a + c
ans = [a[0],a[0]]
a = b
#print(a,b)
while len(a) > 1:
    c = collections.deque()
    while len(a) > 1:
        x = a.popleft()
        y = a.popleft()
        z = query(x,n-1,y,n-1)
        if z == 0:
            c.append(x)
        else:
            c.append(y)
    a = a + c
ans.extend([a[0],n-1])
#print(ans)
ans = list(map(lambda x:x+1,ans))
print('!',*ans)
#1 3 4 2
0