結果

問題 No.282 おもりと天秤(2)
ユーザー pekempeypekempey
提出日時 2015-09-19 09:56:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,762 ms / 5,000 ms
コード長 1,190 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 164,144 KB
実行使用メモリ 25,400 KB
平均クエリ数 440.67
最終ジャッジ日時 2024-07-16 21:30:29
合計ジャッジ時間 35,353 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,836 KB
testcase_01 AC 42 ms
24,836 KB
testcase_02 AC 26 ms
25,220 KB
testcase_03 AC 25 ms
24,580 KB
testcase_04 AC 24 ms
24,836 KB
testcase_05 AC 32 ms
25,220 KB
testcase_06 AC 45 ms
25,220 KB
testcase_07 AC 25 ms
25,220 KB
testcase_08 AC 46 ms
24,848 KB
testcase_09 AC 22 ms
24,836 KB
testcase_10 AC 983 ms
24,836 KB
testcase_11 AC 3,350 ms
25,220 KB
testcase_12 AC 1,088 ms
24,580 KB
testcase_13 AC 1,625 ms
24,836 KB
testcase_14 AC 2,742 ms
24,836 KB
testcase_15 AC 3,417 ms
24,580 KB
testcase_16 AC 230 ms
24,964 KB
testcase_17 AC 1,522 ms
24,836 KB
testcase_18 AC 2,579 ms
24,836 KB
testcase_19 AC 2,523 ms
25,220 KB
testcase_20 AC 3,678 ms
24,940 KB
testcase_21 AC 3,762 ms
24,556 KB
testcase_22 AC 3,708 ms
24,812 KB
testcase_23 AC 23 ms
25,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a) rep2 (i, 0, a)
#define rep2(i, a, b) for (int i = (a); i < (b); i++)
#define repr(i, a) repr2 (i, 0, a)
#define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--)
#define chmin(a, b) ((b) < a && (a = (b), true))
#define chmax(a, b) (a < (b) && (a = (b), true))
#define rng(a) (a).begin(), (a).end()
using namespace std;
typedef long long ll;

vector<int> query(vector<int> a, bool odd) {
	int n = a.size();
	cout << "?";
	rep (i, n - 1) {
		if (i % 2 == odd) {
			cout << " " << a[i] << " " << a[i + 1];
		} else {
			cout << " 0 0";
		}
	}
	cout << " 0 0" << endl;
	vector<int> res;
	rep (i, n) {
		string s;
		cin >> s;
		if (s[0] == '=') res.push_back(0);
		else if (s[0] == '<') res.push_back(-1);
		else res.push_back(1);
	}
	return res;
}

int main() {
	int n;
	cin >> n;
	vector<int> a(n);
	rep (i, n) a[i] = i + 1;
	rep (i, n) {
		auto even = query(a, false);
		for (int i = 0; i + 1 < n; i += 2) {
			if (even[i] > 0) swap(a[i], a[i + 1]);
		}
		auto odd = query(a, true);
		for (int i = 1; i + 1 < n; i += 2) {
			if (odd[i] > 0) swap(a[i], a[i + 1]);
		}
	}
	cout << "!";
	rep (i, n) cout << " " << a[i];
	cout << endl;
    return 0;
}
0