結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー applejamapplejam
提出日時 2024-12-16 22:10:13
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 2,215 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 119,560 KB
実行使用メモリ 25,476 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-16 22:10:30
合計ジャッジ時間 16,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
25,196 KB
testcase_01 AC 205 ms
25,196 KB
testcase_02 AC 183 ms
24,940 KB
testcase_03 AC 184 ms
25,196 KB
testcase_04 AC 182 ms
24,556 KB
testcase_05 AC 183 ms
24,812 KB
testcase_06 AC 185 ms
25,196 KB
testcase_07 AC 196 ms
24,568 KB
testcase_08 AC 182 ms
24,568 KB
testcase_09 AC 182 ms
24,952 KB
testcase_10 AC 179 ms
24,952 KB
testcase_11 AC 177 ms
24,568 KB
testcase_12 AC 190 ms
24,568 KB
testcase_13 AC 183 ms
24,952 KB
testcase_14 AC 177 ms
24,568 KB
testcase_15 AC 178 ms
24,824 KB
testcase_16 AC 178 ms
24,824 KB
testcase_17 AC 181 ms
25,208 KB
testcase_18 AC 180 ms
24,952 KB
testcase_19 AC 177 ms
24,824 KB
testcase_20 AC 178 ms
25,208 KB
testcase_21 AC 181 ms
24,824 KB
testcase_22 AC 178 ms
24,952 KB
testcase_23 AC 189 ms
24,556 KB
testcase_24 AC 179 ms
25,464 KB
testcase_25 AC 179 ms
24,568 KB
testcase_26 AC 181 ms
25,208 KB
testcase_27 AC 178 ms
24,952 KB
testcase_28 AC 196 ms
24,568 KB
testcase_29 AC 181 ms
24,568 KB
testcase_30 AC 187 ms
25,208 KB
testcase_31 AC 180 ms
24,824 KB
testcase_32 AC 181 ms
25,208 KB
testcase_33 AC 181 ms
24,824 KB
testcase_34 AC 185 ms
24,568 KB
testcase_35 AC 176 ms
25,208 KB
testcase_36 AC 180 ms
24,964 KB
testcase_37 AC 180 ms
24,824 KB
testcase_38 AC 181 ms
24,824 KB
testcase_39 AC 188 ms
25,204 KB
testcase_40 AC 178 ms
25,208 KB
testcase_41 AC 178 ms
25,208 KB
testcase_42 AC 184 ms
24,952 KB
testcase_43 AC 183 ms
24,568 KB
testcase_44 AC 190 ms
24,952 KB
testcase_45 AC 180 ms
24,824 KB
testcase_46 AC 181 ms
25,220 KB
testcase_47 AC 181 ms
24,832 KB
testcase_48 AC 182 ms
25,220 KB
testcase_49 AC 180 ms
24,836 KB
testcase_50 AC 189 ms
24,964 KB
testcase_51 AC 178 ms
25,220 KB
testcase_52 AC 179 ms
24,964 KB
testcase_53 AC 177 ms
25,220 KB
testcase_54 AC 189 ms
25,220 KB
testcase_55 AC 188 ms
25,476 KB
testcase_56 AC 178 ms
25,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
#include <queue>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i< (int)(n); i++) 

int main(){
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int n, q; cin >> n >> q;
    set<int> high, low;
    for(int i=1; i+1<=n; i+=2){
        cout << "? " << i << " " << i << " " << i+1 << " " << i+1 << endl;
        int j; cin >> j;
        if(j == -1){
            return 0;
        }
        if(j == 1){
            high.insert(i+1);
            low.insert(i);
        }else{
            high.insert(i);
            low.insert(i+1);
        }
    }
    if(n % 2 != 0){
        high.insert(n);
        low.insert(n);
    }
    while(low.size() > 1){
        queue<int> que;
        while(low.size() > 0){
            que.push(*low.begin());
            low.erase(*low.begin());
        }
        while(que.size() > 1){
            int a = que.front(); que.pop();
            int b = que.front(); que.pop();
            cout << "? " << a << " " << a << " " << b << " " << b << endl;
            int j; cin >> j;
            if(j == -1){
                return 0;
            }
            if(j == 0){
                low.insert(b);
            }else{
                low.insert(a);
            }
        }
        while(!que.empty()){
            low.insert(que.front()); que.pop();
        }
    } 

    while(high.size() > 1){
        queue<int> que;
        while(high.size() > 0){
            que.push(*high.begin());
            high.erase(*high.begin());
        }
        while(que.size() > 1){
            int a = que.front(); que.pop();
            int b = que.front(); que.pop();
            cout << "? " << a << " " << n << " " << b << " " << n << endl;
            int j; cin >> j;
            if(j == -1){
                return 0;
            }
            if(j == 0){
                high.insert(a);
            }else{
                high.insert(b);
            }
        }
        while(!que.empty()){
            high.insert(que.front()); que.pop();
        }
    } 

    cout << "! " << *low.begin() << " " << *low.begin() << " " << *high.begin() << " " << n << endl;

    return 0;
}
0