結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-12-21 13:45:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,608 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-21 13:46:14
合計ジャッジ時間 15,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
27,088 KB
testcase_01 AC 215 ms
27,344 KB
testcase_02 AC 235 ms
27,216 KB
testcase_03 AC 208 ms
27,472 KB
testcase_04 AC 206 ms
27,216 KB
testcase_05 AC 207 ms
27,344 KB
testcase_06 AC 203 ms
27,344 KB
testcase_07 AC 230 ms
27,224 KB
testcase_08 AC 199 ms
27,224 KB
testcase_09 AC 202 ms
27,096 KB
testcase_10 AC 204 ms
27,224 KB
testcase_11 AC 202 ms
27,096 KB
testcase_12 AC 230 ms
27,608 KB
testcase_13 AC 203 ms
27,096 KB
testcase_14 AC 200 ms
27,216 KB
testcase_15 AC 202 ms
27,608 KB
testcase_16 AC 209 ms
26,968 KB
testcase_17 AC 215 ms
27,352 KB
testcase_18 AC 205 ms
27,224 KB
testcase_19 AC 202 ms
26,968 KB
testcase_20 AC 205 ms
27,224 KB
testcase_21 AC 205 ms
27,224 KB
testcase_22 AC 216 ms
27,224 KB
testcase_23 AC 231 ms
27,224 KB
testcase_24 AC 205 ms
27,224 KB
testcase_25 AC 203 ms
27,224 KB
testcase_26 AC 201 ms
26,968 KB
testcase_27 AC 202 ms
27,224 KB
testcase_28 AC 204 ms
26,968 KB
testcase_29 AC 209 ms
27,480 KB
testcase_30 AC 199 ms
27,096 KB
testcase_31 AC 200 ms
27,352 KB
testcase_32 AC 204 ms
27,352 KB
testcase_33 AC 204 ms
27,480 KB
testcase_34 AC 204 ms
26,968 KB
testcase_35 AC 207 ms
26,968 KB
testcase_36 AC 232 ms
27,352 KB
testcase_37 AC 205 ms
27,352 KB
testcase_38 AC 206 ms
26,968 KB
testcase_39 AC 203 ms
27,352 KB
testcase_40 AC 202 ms
27,224 KB
testcase_41 AC 206 ms
26,968 KB
testcase_42 AC 227 ms
27,608 KB
testcase_43 AC 206 ms
26,968 KB
testcase_44 AC 211 ms
26,968 KB
testcase_45 AC 203 ms
27,224 KB
testcase_46 AC 207 ms
27,480 KB
testcase_47 AC 209 ms
27,352 KB
testcase_48 AC 207 ms
27,576 KB
testcase_49 AC 230 ms
27,480 KB
testcase_50 AC 202 ms
27,352 KB
testcase_51 AC 207 ms
27,224 KB
testcase_52 AC 203 ms
27,216 KB
testcase_53 AC 200 ms
27,224 KB
testcase_54 AC 202 ms
27,352 KB
testcase_55 AC 227 ms
27,224 KB
testcase_56 AC 203 ms
27,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
Created on Sat Dec 21 12:45:36 2024

@author: Tekyla
"""

#from sys import stdin
#input = lambda :stdin.readline()[:-1]

N,Q = map(int, input().split())
min_ = []
max_ = []
size = 1
for i in range(N//2):
    print("?", 2*i+1, 2*i+1, 2*i+2, 2*i+2)
    X = int(input())
    if X == 1:
        min_.append(2*i+1)
        max_.append(2*i+2)
    else:
        min_.append(2*i+2)
        max_.append(2*i+1)

# ここから個別に仕分け作業
# 最小は長さ1
while len(min_) > 1:
    i,j = min_.pop(), min_.pop()
    print("?", i,i, j,j)
    X = int(input())
    if X == 1:
        min_.append(i)
    else:
        min_.append(j)

# 最大は長さも長い
while len(max_) > 1:
    i,j = max_.pop(), max_.pop()
    print("?", i,N, j,N)
    X = int(input())
    if X == 1:
        max_.append(j)
    else:
        max_.append(i)

print("!", min_[0], min_[0], max_[0], N)
0