結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー nikoro256nikoro256
提出日時 2024-12-02 00:45:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 94,176 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-02 00:46:00
合計ジャッジ時間 21,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
93,408 KB
testcase_01 AC 296 ms
93,144 KB
testcase_02 AC 334 ms
93,408 KB
testcase_03 AC 306 ms
93,664 KB
testcase_04 AC 299 ms
92,896 KB
testcase_05 AC 330 ms
92,896 KB
testcase_06 AC 307 ms
92,640 KB
testcase_07 AC 295 ms
93,300 KB
testcase_08 AC 295 ms
93,160 KB
testcase_09 AC 326 ms
93,112 KB
testcase_10 AC 304 ms
93,648 KB
testcase_11 AC 328 ms
93,288 KB
testcase_12 AC 327 ms
93,256 KB
testcase_13 AC 296 ms
92,924 KB
testcase_14 AC 327 ms
93,160 KB
testcase_15 AC 329 ms
93,008 KB
testcase_16 AC 293 ms
93,432 KB
testcase_17 AC 294 ms
93,616 KB
testcase_18 AC 299 ms
93,160 KB
testcase_19 AC 329 ms
93,352 KB
testcase_20 AC 326 ms
93,160 KB
testcase_21 AC 313 ms
93,032 KB
testcase_22 AC 293 ms
93,680 KB
testcase_23 AC 322 ms
93,136 KB
testcase_24 AC 295 ms
93,160 KB
testcase_25 AC 295 ms
93,524 KB
testcase_26 AC 326 ms
93,176 KB
testcase_27 AC 312 ms
93,352 KB
testcase_28 AC 298 ms
93,544 KB
testcase_29 AC 294 ms
93,160 KB
testcase_30 AC 321 ms
92,648 KB
testcase_31 AC 293 ms
93,160 KB
testcase_32 AC 291 ms
93,084 KB
testcase_33 AC 339 ms
93,160 KB
testcase_34 AC 303 ms
93,160 KB
testcase_35 AC 291 ms
93,288 KB
testcase_36 AC 294 ms
93,024 KB
testcase_37 AC 329 ms
93,536 KB
testcase_38 AC 312 ms
93,320 KB
testcase_39 AC 310 ms
92,984 KB
testcase_40 AC 326 ms
93,452 KB
testcase_41 AC 300 ms
93,032 KB
testcase_42 AC 298 ms
93,544 KB
testcase_43 AC 295 ms
93,544 KB
testcase_44 AC 327 ms
92,904 KB
testcase_45 AC 292 ms
93,160 KB
testcase_46 AC 297 ms
93,152 KB
testcase_47 AC 294 ms
93,272 KB
testcase_48 AC 332 ms
93,280 KB
testcase_49 AC 299 ms
94,176 KB
testcase_50 AC 301 ms
92,768 KB
testcase_51 AC 327 ms
93,268 KB
testcase_52 AC 294 ms
92,640 KB
testcase_53 AC 325 ms
93,024 KB
testcase_54 AC 293 ms
93,152 KB
testcase_55 AC 322 ms
93,720 KB
testcase_56 AC 312 ms
93,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key
N,Q=map(int,input().split())
A_=[i for i in range(N)]


def ans(a,b,c,d):
    print('?',a,b,c,d,flush=True)
    X=int(input())
    return X
    if A_[a-1:b] < A_[c-1:d]:
        print(0)
        return 1
    else:
        print(1)
        return 0

mi=[]
ma=[]
for i in range(1,N,2):
    X=ans(i,N,i+1,N)
    if X==1:
        mi.append(i)
        ma.append(i+1)
    else:
        ma.append(i)
        mi.append(i+1)
mians=mi[0]
for i in range(1,len(mi)):
    X=ans(mians,mians,mi[i],mi[i])
    if X==0:
        mians=mi[i]
maans=ma[0]
for i in range(1,len(ma)):
    X=ans(maans,N,ma[i],N)
    if X==1:
        maans=ma[i]
#print(ma[:10])
print('!',mians,mians,maans,N)
0