結果

問題 No.282 おもりと天秤(2)
ユーザー ShibuyapShibuyap
提出日時 2020-07-04 17:29:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,724 ms / 5,000 ms
コード長 2,088 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 209,688 KB
実行使用メモリ 25,476 KB
平均クエリ数 917.71
最終ジャッジ日時 2024-07-17 02:48:35
合計ジャッジ時間 43,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,580 KB
testcase_01 AC 350 ms
25,220 KB
testcase_02 AC 231 ms
24,964 KB
testcase_03 AC 203 ms
25,476 KB
testcase_04 AC 167 ms
24,964 KB
testcase_05 AC 296 ms
24,580 KB
testcase_06 AC 390 ms
25,220 KB
testcase_07 AC 167 ms
24,820 KB
testcase_08 AC 390 ms
24,832 KB
testcase_09 AC 74 ms
24,580 KB
testcase_10 AC 1,912 ms
24,836 KB
testcase_11 AC 3,629 ms
25,220 KB
testcase_12 AC 1,987 ms
24,964 KB
testcase_13 AC 2,504 ms
24,580 KB
testcase_14 AC 3,228 ms
25,220 KB
testcase_15 AC 3,598 ms
25,220 KB
testcase_16 AC 940 ms
24,836 KB
testcase_17 AC 2,406 ms
24,580 KB
testcase_18 AC 2,931 ms
24,836 KB
testcase_19 AC 3,051 ms
24,964 KB
testcase_20 AC 3,606 ms
24,940 KB
testcase_21 AC 3,724 ms
24,556 KB
testcase_22 AC 3,684 ms
25,040 KB
testcase_23 AC 22 ms
24,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}
#define MAX_N 200005

int main() {
    int n;
    cin >> n;
    if(n == 1){
        cout << "! 1" << endl;
        return 0;
    }
    if(n == 2){
        cout << "? 1 2 0 0" << endl;
        fflush(stdout);
        char c;
        cin >> c;
        if(c == '>'){
            cin >> c;
            cout << "! 2 1" << endl;
        }else{
            cin >> c;
            cout << "! 1 2" << endl;
        }
        return 0;
    }
    int nn = n;
    int odd = 0;
    if(n % 2 == 1){
        odd = 1;
        n++;
    }
    int f[n+1][n+1];
    rep(i,n+1){
        rep(j,n+1){
            f[i][j] = 0;
        }
    }
    int a[1000] = {}, b[1000] = {};
    rep(i,n/2){
        a[i] = i+1;
        b[i] = n-i;
    }
    rep(_,1000){
        int x[2000] = {};
        rep(i,n/2){
            x[i*2] = a[i];
            x[i*2+1] = b[i];
            if(x[i*2] == n && odd == 1) x[i*2] = 0;
            if(x[i*2+1] == n && odd == 1) x[i*2+1] = 0;
        }
        cout << '?';
        rep(i,nn*2)cout << ' ' << x[i];
        cout << endl;
        fflush(stdout);
        rep(i,nn){
            char c;
            cin >> c;
            if(c == '<'){
                f[x[i*2]][x[i*2+1]] = 1;
            }
            if(c == '>'){
                f[x[i*2+1]][x[i*2]] = 1;
            }
        }
        int keep = a[n/2-1];
        drep(i,n/2){
            if(i == 0)break;
            a[i] = a[i-1];
        }
        a[1] = b[0];
        rep(i,n/2){
            b[i] = b[i+1];
        }
        b[n/2-1] = keep;
    }

    vector<P> v;
    srep(i,1,nn+1){
        int cnt = 0;
        srep(j,1,nn+1)cnt += f[i][j];
        v.push_back(P(-cnt,i));
    }

    sort(v.begin(), v.end());

    cout << '!';
    rep(i,v.size()){
        cout << ' ' << v[i].second;
    }
    cout << endl;

    return 0;
}
 
 
0