結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー hato336hato336
提出日時 2024-12-02 12:36:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,132 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,440 KB
平均クエリ数 1489.00
最終ジャッジ日時 2024-12-02 12:37:09
合計ジャッジ時間 22,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 330 ms
93,280 KB
testcase_03 WA -
testcase_04 AC 301 ms
93,280 KB
testcase_05 AC 331 ms
93,536 KB
testcase_06 AC 303 ms
94,432 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 295 ms
93,928 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 300 ms
94,056 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 331 ms
94,056 KB
testcase_25 WA -
testcase_26 AC 300 ms
94,056 KB
testcase_27 AC 303 ms
93,416 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 301 ms
93,672 KB
testcase_32 WA -
testcase_33 AC 303 ms
93,416 KB
testcase_34 AC 304 ms
93,288 KB
testcase_35 WA -
testcase_36 AC 330 ms
93,536 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 305 ms
93,544 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 300 ms
94,176 KB
testcase_49 WA -
testcase_50 AC 314 ms
93,664 KB
testcase_51 AC 332 ms
93,568 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 311 ms
93,408 KB
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 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 = c
ans.extend([a[0],n-1])
#print(ans)
ans = list(map(lambda x:x+1,ans))
print('!',*ans)
#1 3 4 2
0