結果

問題 No.282 おもりと天秤(2)
ユーザー ShibuyapShibuyap
提出日時 2020-07-04 17:26:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,717 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 209,772 KB
実行使用メモリ 25,452 KB
平均クエリ数 1001.00
最終ジャッジ日時 2024-07-17 03:57:10
合計ジャッジ時間 44,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 366 ms
25,220 KB
testcase_02 AC 242 ms
25,220 KB
testcase_03 AC 199 ms
25,220 KB
testcase_04 AC 170 ms
24,580 KB
testcase_05 AC 308 ms
25,220 KB
testcase_06 AC 392 ms
24,836 KB
testcase_07 AC 169 ms
24,580 KB
testcase_08 AC 401 ms
25,220 KB
testcase_09 AC 76 ms
24,964 KB
testcase_10 AC 1,970 ms
24,580 KB
testcase_11 AC 3,542 ms
25,220 KB
testcase_12 AC 2,024 ms
24,568 KB
testcase_13 AC 2,377 ms
25,220 KB
testcase_14 AC 3,387 ms
24,580 KB
testcase_15 AC 3,672 ms
24,580 KB
testcase_16 AC 915 ms
24,964 KB
testcase_17 AC 2,447 ms
24,964 KB
testcase_18 AC 3,080 ms
24,580 KB
testcase_19 AC 3,152 ms
24,836 KB
testcase_20 AC 3,627 ms
24,812 KB
testcase_21 AC 3,812 ms
24,940 KB
testcase_22 AC 3,833 ms
24,812 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
    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