結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー 👑 NachiaNachia
提出日時 2024-12-02 00:04:57
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 81,120 KB
実行使用メモリ 25,580 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-02 00:05:13
合計ジャッジ時間 14,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
25,196 KB
testcase_01 AC 169 ms
24,812 KB
testcase_02 AC 192 ms
25,580 KB
testcase_03 AC 186 ms
25,196 KB
testcase_04 AC 177 ms
24,812 KB
testcase_05 AC 175 ms
25,196 KB
testcase_06 AC 193 ms
25,168 KB
testcase_07 AC 172 ms
25,208 KB
testcase_08 AC 172 ms
24,568 KB
testcase_09 AC 169 ms
24,824 KB
testcase_10 AC 178 ms
24,568 KB
testcase_11 AC 173 ms
24,568 KB
testcase_12 AC 190 ms
24,824 KB
testcase_13 AC 167 ms
25,336 KB
testcase_14 AC 172 ms
24,824 KB
testcase_15 AC 174 ms
24,568 KB
testcase_16 AC 171 ms
24,952 KB
testcase_17 AC 169 ms
25,080 KB
testcase_18 AC 170 ms
25,080 KB
testcase_19 AC 170 ms
25,196 KB
testcase_20 AC 169 ms
25,208 KB
testcase_21 AC 169 ms
24,568 KB
testcase_22 AC 168 ms
24,952 KB
testcase_23 AC 189 ms
25,208 KB
testcase_24 AC 172 ms
25,080 KB
testcase_25 AC 171 ms
25,208 KB
testcase_26 AC 169 ms
25,464 KB
testcase_27 AC 171 ms
24,568 KB
testcase_28 AC 170 ms
25,208 KB
testcase_29 AC 185 ms
24,824 KB
testcase_30 AC 174 ms
25,460 KB
testcase_31 AC 170 ms
24,568 KB
testcase_32 AC 167 ms
24,952 KB
testcase_33 AC 168 ms
24,568 KB
testcase_34 AC 185 ms
25,208 KB
testcase_35 AC 186 ms
24,824 KB
testcase_36 AC 197 ms
25,220 KB
testcase_37 AC 189 ms
24,952 KB
testcase_38 AC 181 ms
24,824 KB
testcase_39 AC 187 ms
24,824 KB
testcase_40 AC 188 ms
25,208 KB
testcase_41 AC 202 ms
25,208 KB
testcase_42 AC 188 ms
24,824 KB
testcase_43 AC 171 ms
25,208 KB
testcase_44 AC 171 ms
24,824 KB
testcase_45 AC 188 ms
24,824 KB
testcase_46 AC 173 ms
24,836 KB
testcase_47 AC 188 ms
24,820 KB
testcase_48 AC 188 ms
25,220 KB
testcase_49 AC 188 ms
25,092 KB
testcase_50 AC 188 ms
24,836 KB
testcase_51 AC 175 ms
25,220 KB
testcase_52 AC 169 ms
25,220 KB
testcase_53 AC 169 ms
24,836 KB
testcase_54 AC 173 ms
24,964 KB
testcase_55 AC 177 ms
24,808 KB
testcase_56 AC 185 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#ifdef NACHIA
//#define _GLIBCXX_DEBUG
//#else
//#define NDEBUG
//#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
using namespace std;
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;

void testcase(){
    int N; cin >> N;
    int Q; cin >> Q;
    vector<int> A(N); rep(i,N) A[i] = i;
    auto ans = minmax_element(A.begin(), A.end(),
        [&](int l, int r){
            cout << "? " << (l+1) << " " << N
                 <<  " " << (r+1) << " " << N
                 << endl;
            int res; cin >> res;
            if(res == -1) exit(0);
            return res == 1;
        });
    int u = ans.first - A.begin();
    int v = ans.second - A.begin();
    cout << "! " << (u+1) << " " << (u+1) << " " << (v+1) << " " << N << endl;
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    testcase();
    return 0;
}
0