結果

問題 No.282 おもりと天秤(2)
ユーザー TatamoTatamo
提出日時 2016-06-15 11:36:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,815 ms / 5,000 ms
コード長 1,097 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 58,564 KB
実行使用メモリ 25,452 KB
平均クエリ数 212.00
最終ジャッジ日時 2024-07-16 23:58:47
合計ジャッジ時間 17,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,220 KB
testcase_01 AC 23 ms
24,836 KB
testcase_02 AC 22 ms
25,208 KB
testcase_03 AC 23 ms
24,836 KB
testcase_04 AC 22 ms
25,220 KB
testcase_05 AC 24 ms
24,580 KB
testcase_06 AC 26 ms
24,964 KB
testcase_07 AC 20 ms
25,220 KB
testcase_08 AC 26 ms
24,964 KB
testcase_09 AC 21 ms
25,220 KB
testcase_10 AC 468 ms
25,220 KB
testcase_11 AC 1,611 ms
24,836 KB
testcase_12 AC 506 ms
25,220 KB
testcase_13 AC 816 ms
24,580 KB
testcase_14 AC 1,324 ms
25,220 KB
testcase_15 AC 1,621 ms
24,836 KB
testcase_16 AC 95 ms
25,220 KB
testcase_17 AC 700 ms
24,964 KB
testcase_18 AC 1,114 ms
25,220 KB
testcase_19 AC 1,199 ms
24,836 KB
testcase_20 AC 1,779 ms
24,812 KB
testcase_21 AC 1,815 ms
24,812 KB
testcase_22 AC 1,815 ms
25,452 KB
testcase_23 AC 21 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<utility>
#include<algorithm>

using namespace std;

int main(){
	int n;
	cin >> n;

	int *l = new int[n];
	for(int i=0; i<n; i++){
		l[i] = i+1;
	}
	bool flg_all_sorted = false;
	bool flg_all_sorted_prev = false;
	for(int q=0; q<n; q++){ // クエリはn回以内に終了する (while(true)でもいい)
		// send query
		int offset = q%2;
		cout << "? ";
		for(int i=0; i<n; i++){
			if(i*2+2+offset<=n){
				cout << l[i*2+1+offset - 1] << " " << l[i*2+2+offset - 1] << " ";
			}
			else {
				cout << "0 0 ";
			}
		}
		cout << endl; // 出力をflush

		// get answer
		flg_all_sorted_prev = flg_all_sorted;
		flg_all_sorted = true;
		for(int i=0; i<n; i++){
			char tmp;
			cin >> tmp;
			if(tmp == '>'){ // swap
				int index = i*2+1+offset;
				//cerr << "swap " << index << " and " << index+1 << endl;
				swap(l[index - 1], l[index+1 - 1]);
				flg_all_sorted = false;
			}
		}
		if(flg_all_sorted && flg_all_sorted_prev){
			break; // おわり
		}
	}

	// answer
	cout << "! ";
	for(int i=0; i<n; i++){
		cout << l[i] << " ";
	}
	cout << endl;

	return 0;
}
0