結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー iseeisee
提出日時 2024-12-03 21:11:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,182 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 84,476 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-03 21:11:39
合計ジャッジ時間 18,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
83,144 KB
testcase_01 AC 243 ms
83,300 KB
testcase_02 AC 249 ms
83,480 KB
testcase_03 AC 250 ms
83,256 KB
testcase_04 AC 267 ms
82,652 KB
testcase_05 AC 246 ms
82,048 KB
testcase_06 AC 247 ms
82,776 KB
testcase_07 AC 230 ms
83,752 KB
testcase_08 AC 231 ms
82,856 KB
testcase_09 AC 234 ms
82,420 KB
testcase_10 AC 235 ms
82,772 KB
testcase_11 AC 237 ms
82,740 KB
testcase_12 AC 238 ms
83,064 KB
testcase_13 AC 255 ms
82,856 KB
testcase_14 AC 239 ms
82,308 KB
testcase_15 AC 236 ms
81,884 KB
testcase_16 AC 229 ms
83,060 KB
testcase_17 AC 234 ms
83,628 KB
testcase_18 AC 256 ms
83,604 KB
testcase_19 AC 228 ms
82,956 KB
testcase_20 AC 228 ms
83,432 KB
testcase_21 AC 233 ms
82,992 KB
testcase_22 AC 242 ms
82,272 KB
testcase_23 AC 230 ms
83,852 KB
testcase_24 AC 237 ms
82,436 KB
testcase_25 AC 235 ms
82,764 KB
testcase_26 AC 231 ms
82,796 KB
testcase_27 AC 253 ms
82,208 KB
testcase_28 AC 241 ms
84,084 KB
testcase_29 AC 232 ms
82,840 KB
testcase_30 AC 231 ms
82,332 KB
testcase_31 AC 235 ms
82,824 KB
testcase_32 AC 257 ms
82,940 KB
testcase_33 AC 235 ms
82,816 KB
testcase_34 AC 232 ms
83,704 KB
testcase_35 AC 236 ms
84,368 KB
testcase_36 AC 256 ms
82,388 KB
testcase_37 AC 238 ms
82,944 KB
testcase_38 AC 236 ms
83,488 KB
testcase_39 AC 234 ms
83,348 KB
testcase_40 AC 234 ms
83,800 KB
testcase_41 AC 257 ms
83,572 KB
testcase_42 AC 239 ms
83,172 KB
testcase_43 AC 231 ms
84,476 KB
testcase_44 AC 229 ms
84,044 KB
testcase_45 AC 253 ms
82,180 KB
testcase_46 AC 235 ms
82,740 KB
testcase_47 AC 230 ms
83,480 KB
testcase_48 AC 244 ms
83,308 KB
testcase_49 AC 235 ms
82,656 KB
testcase_50 AC 255 ms
82,720 KB
testcase_51 AC 232 ms
84,216 KB
testcase_52 AC 231 ms
82,396 KB
testcase_53 AC 237 ms
84,268 KB
testcase_54 AC 230 ms
83,848 KB
testcase_55 AC 240 ms
82,820 KB
testcase_56 AC 235 ms
83,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

def main():
    # 入力
    N, Q = map(int, input().split())
    # 計算・出力
    # count = []
    def ask(l1, l2):
        # count.append(0)
        # [l1, N] < [l2, N] か?
        print(f'? {l1} {N} {l2} {N}', flush=True)
        res = int(input())
        # res = 1
        assert res != -1
        return res
    def answer(l1, l2):
        # print(len(count))
        print(f'! {l1} {l1} {l2} {N}', flush=True)
        exit()
    def solve(L, mode=0):  # mode 0: 小さい方
        while len(L) != 1:
            nL = []
            while len(L) >= 2:
                a = L.pop()
                b = L.pop()
                res = ask(a, b)
                if res ^ mode:
                    nL.append(a)
                else:
                    nL.append(b)
            L += nL
        return L[0]
    lowL, highL = [], []
    for i in range(1, N+1, 2):
        res = ask(i, i+1)
        if res:
            lowL.append(i)
            highL.append(i+1)
        else:
            lowL.append(i+1)
            highL.append(i)
    answer(solve(lowL, 0), solve(highL, 1))

if __name__ == "__main__":
    main()
0