結果

問題 No.282 おもりと天秤(2)
ユーザー mamekinmamekin
提出日時 2018-03-20 13:28:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,257 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 102,624 KB
実行使用メモリ 25,220 KB
平均クエリ数 917.12
最終ジャッジ日時 2024-07-17 01:43:19
合計ジャッジ時間 17,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
24,964 KB
testcase_01 AC 746 ms
25,092 KB
testcase_02 AC 493 ms
25,220 KB
testcase_03 AC 393 ms
24,836 KB
testcase_04 AC 334 ms
24,452 KB
testcase_05 AC 606 ms
25,220 KB
testcase_06 AC 798 ms
25,220 KB
testcase_07 AC 338 ms
24,964 KB
testcase_08 AC 782 ms
24,964 KB
testcase_09 AC 147 ms
25,220 KB
testcase_10 AC 3,908 ms
25,204 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    for(int i=0; i<n; ++i)
        a[i] = i + 1;

    for(int t=0; t<2000; ++t){
        vector<int> v(2*n, -1);
        vector<int> b(2*n, 0);
        if(t % 2 == 0){
            for(int i=0; i<(n&~1); ++i){
                v[i] = i;
                b[i] = a[i];
            }
        }
        else{
            for(int i=0; i<((n-1)&~1); ++i){
                v[i] = i + 1;
                b[i] = a[i+1];
            }
        }

        cout << '?';
        for(int i=0; i<2*n; ++i)
            cout << ' ' << b[i];
        cout << endl;

        for(int i=0; i<n; ++i){
            char c;
            cin >> c;
            if(c == '>')
                swap(a[v[2*i]], a[v[2*i+1]]);
        }
    }

    cout << '!';
    for(int i=0; i<n; ++i)
        cout << ' ' << a[i];
    cout << endl;

    return 0;
}
0