結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー xiaokai houxiaokai hou
提出日時 2024-12-25 14:34:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 3,323 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 125,716 KB
実行使用メモリ 25,460 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-25 14:35:15
合計ジャッジ時間 14,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
24,824 KB
testcase_01 AC 157 ms
25,068 KB
testcase_02 AC 161 ms
24,812 KB
testcase_03 AC 190 ms
25,452 KB
testcase_04 AC 156 ms
24,940 KB
testcase_05 AC 156 ms
25,068 KB
testcase_06 AC 165 ms
24,812 KB
testcase_07 AC 182 ms
25,208 KB
testcase_08 AC 159 ms
24,824 KB
testcase_09 AC 153 ms
25,208 KB
testcase_10 AC 153 ms
25,208 KB
testcase_11 AC 172 ms
25,208 KB
testcase_12 AC 167 ms
24,824 KB
testcase_13 AC 173 ms
24,824 KB
testcase_14 AC 157 ms
24,824 KB
testcase_15 AC 162 ms
24,824 KB
testcase_16 AC 188 ms
24,568 KB
testcase_17 AC 162 ms
25,196 KB
testcase_18 AC 158 ms
24,824 KB
testcase_19 AC 157 ms
24,824 KB
testcase_20 AC 161 ms
25,460 KB
testcase_21 AC 156 ms
24,952 KB
testcase_22 AC 154 ms
25,208 KB
testcase_23 AC 162 ms
24,568 KB
testcase_24 AC 162 ms
25,208 KB
testcase_25 AC 170 ms
25,208 KB
testcase_26 AC 216 ms
24,568 KB
testcase_27 AC 154 ms
24,824 KB
testcase_28 AC 180 ms
25,208 KB
testcase_29 AC 155 ms
25,208 KB
testcase_30 AC 162 ms
25,208 KB
testcase_31 AC 163 ms
24,824 KB
testcase_32 AC 189 ms
25,208 KB
testcase_33 AC 167 ms
24,824 KB
testcase_34 AC 153 ms
24,824 KB
testcase_35 AC 183 ms
25,208 KB
testcase_36 AC 159 ms
24,580 KB
testcase_37 AC 168 ms
24,824 KB
testcase_38 AC 165 ms
25,136 KB
testcase_39 AC 190 ms
25,208 KB
testcase_40 AC 167 ms
25,208 KB
testcase_41 AC 158 ms
24,824 KB
testcase_42 AC 164 ms
24,824 KB
testcase_43 AC 182 ms
24,824 KB
testcase_44 AC 158 ms
24,808 KB
testcase_45 AC 160 ms
25,208 KB
testcase_46 AC 160 ms
25,220 KB
testcase_47 AC 185 ms
25,460 KB
testcase_48 AC 157 ms
24,964 KB
testcase_49 AC 172 ms
24,836 KB
testcase_50 AC 159 ms
24,580 KB
testcase_51 AC 160 ms
25,220 KB
testcase_52 AC 169 ms
24,836 KB
testcase_53 AC 155 ms
25,220 KB
testcase_54 AC 209 ms
24,580 KB
testcase_55 AC 163 ms
24,580 KB
testcase_56 AC 155 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <iomanip>
#include <cstring>
#include <string>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <vector>
#include <queue> 
#include <unordered_set>
#include <unordered_map>
#include <bitset>
#include <ctime>
#include <assert.h>
#include <deque>
#include <list>
#include <stack>


using namespace std;

#define is_mul_overflow(a, b) \
    ((b != 0) && (a > LLONG_MAX / b || a < LLONG_MIN / b))
 
typedef pair<long long, int> pli;
typedef pair<int, long long> pil;
typedef pair<long long , long long> pll;
typedef pair<int, int> pii;
typedef pair<double, double> pdd;
typedef pair<int, pii> piii;
typedef pair<int, long long > pil;
typedef pair<long long, pii> plii;
typedef pair<double, int> pdi;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ull, ull> puu;
typedef long double ld;
const int N = 2000086, MOD = 998244353, INF = 0x3f3f3f3f, MID = 333;
const long double EPS = 1e-8;
int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};
// int dx[8] = {1, 1, 0, -1, -1, -1, 0, 1}, dy[8] = {0, 1, 1, 1, 0, -1, -1, -1};
// int dx[8] = {2, 1, -1, -2, -2, -1, 1, 2}, dy[8] = {1, 2, 2, 1, -1, -2, -2, -1};
int n, m, cnt;
int w[N];
vector<ll> num;
ll res;

ll lowbit(ll x) { return x & -x; }
ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }
ll lcm(ll a, ll b) { return a / gcd(a, b) * b; }
inline double rand(double l, double r) { return (double)rand() / RAND_MAX * (r - l) + l; }
inline ll qmi(ll a, ll b, ll c) { ll res = 1; while (b) { if (b & 1) res = res * a % c; a = a * a % c; b >>= 1; } return res; }
inline ll qmi(ll a, ll b) { ll res = 1; while (b) { if (b & 1) res *= a; a *= a; b >>= 1; } return res; }
inline double qmi(double a, ll b) { double res = 1; while (b) { if (b & 1) res *= a; a *= a; b >>= 1; } return res; } 
// inline ll C(ll a, ll b) { if (a < b) return 0; if (b > a - b) b = a - b; ll res = 1; for (ll i = 1, j = a; i <= b; i++, j--) { res = res * (j % MOD) % MOD; res = res * qmi(i, MOD - 2, MOD) % MOD; } return res; }
inline ll C(ll a, ll b, int* c) { if (a < b) return 0; ll res = 1; for (ll j = a, i = 1; i < b + 1; i++, j--) res *= j; for (ll j = a, i = 1; i < b + 1; i++, j--) res /= i; return res; }
inline int find_(int x) { return lower_bound(num.begin(), num.end(), x) - num.begin(); }

int ask(int a, int b, int c, int d) {
    printf("? %d %d %d %d\n", a, b, c, d);
    fflush(stdout);
    int res;
    scanf("%d", &res);
    if (res == -1) while (1);
    return res;
}

void solve() {
    queue<int> h, l;
    for (int i = 1; i < n + 1; i+= 2) {
        int ans = ask(i, i, i + 1, i + 1);
        if (ans == 1) {
            h.push(i + 1);
            l.push(i);
        } else {
            h.push(i);
            l.push(i + 1);
        }
    }

    while (l.size() > 1) {
        int u = l.front(); l.pop();
        int v = l.front(); l.pop();
        int ans = ask(u, u, v, v);
        if (ans == 1) l.push(u);
        else l.push(v);
    }

    while (h.size() > 1) {
        int u = h.front(); h.pop();
        int v = h.front(); h.pop();
        int ans = ask(u, n, v, n);
        if (ans == 1) h.push(v);
        else h.push(u);
    }

    printf("! %d %d %d %d\n", l.front(), l.front(), h.front(), n);
    fflush(stdout);
}

int main() {
    cin >> n >> m;
    solve();
    return 0;
}
0