結果
問題 | No.282 おもりと天秤(2) |
ユーザー | paruki |
提出日時 | 2016-07-10 00:41:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,528 bytes |
コンパイル時間 | 1,635 ms |
コンパイル使用メモリ | 171,444 KB |
実行使用メモリ | 32,944 KB |
平均クエリ数 | 917.12 |
最終ジャッジ日時 | 2024-07-16 10:33:55 |
合計ジャッジ時間 | 18,982 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
25,220 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
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 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; string nstr(){ static const int MAX_LEN = 100001; static char res_[MAX_LEN]; scanf("%s",res_); return string(res_); } int N; vector<string> q1(vi &lr){ printf("?"); rep(i, N*2) printf(" %d", lr[i]); printf("\n"); fflush(stdout); vector<string> res(N); rep(i, N)res[i] = nstr(); return res; } void q2(vi &ans){ printf("!"); rep(i, sz(ans))printf(" %d", ans[i]); printf("\n"); fflush(stdout); } int main(){ scanf("%d", &N); vi ans(N); iota(all(ans), 1); int ok = 1; rep(iter, 1000){ ok = 1; rep(s, 2){ vi Q(N * 2); FOR(i, s, N)Q[i - s] = ans[i]; auto C = q1(Q); for(int i = 0, j = 0; ; i += 2, ++j){ if(Q[s + i * 2 + 1] == 0)break; char c = C[j][0]; if(c == '>'){ ok = 0; swap(ans[s + i * 2], ans[s + i * 2 + 1]); } } } } q2(ans); }