結果

問題 No.282 おもりと天秤(2)
ユーザー climpetclimpet
提出日時 2015-09-19 18:12:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,809 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 46,464 KB
実行使用メモリ 25,604 KB
平均クエリ数 405.29
最終ジャッジ日時 2024-07-16 06:19:18
合計ジャッジ時間 4,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 22 ms
24,568 KB
testcase_02 AC 21 ms
24,580 KB
testcase_03 AC 23 ms
24,580 KB
testcase_04 AC 21 ms
25,348 KB
testcase_05 AC 22 ms
25,220 KB
testcase_06 AC 22 ms
24,836 KB
testcase_07 AC 21 ms
25,220 KB
testcase_08 AC 23 ms
24,836 KB
testcase_09 WA -
testcase_10 AC 70 ms
24,964 KB
testcase_11 AC 159 ms
25,604 KB
testcase_12 AC 89 ms
25,220 KB
testcase_13 AC 112 ms
24,964 KB
testcase_14 AC 144 ms
25,604 KB
testcase_15 AC 163 ms
25,220 KB
testcase_16 AC 31 ms
24,952 KB
testcase_17 AC 105 ms
24,836 KB
testcase_18 AC 127 ms
24,964 KB
testcase_19 AC 132 ms
24,964 KB
testcase_20 AC 157 ms
24,556 KB
testcase_21 AC 166 ms
25,436 KB
testcase_22 AC 165 ms
24,812 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:50:14: warning: ignoring return value of ‘char* fgets(char*, int, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   50 |         fgets(buf, 3000, stdin);
      |         ~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:75:22: warning: ignoring return value of ‘char* fgets(char*, int, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   75 |                 fgets(buf, 3000, stdin);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:91:22: warning: ignoring return value of ‘char* fgets(char*, int, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   91 |                 fgets(buf, 3000, stdin);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <vector>
#include <cstdlib>
#include <algorithm>
#include <utility>
using namespace std;

int n;
char buf[3000];
vector<vector<int> > cmp;

void cmp_swap(int lvl, int a, int b){
	if(a < n && b < n){
		while((int)cmp.size() <= lvl){
			cmp.push_back(vector<int>());
		}
		cmp[lvl].push_back(a);
		cmp[lvl].push_back(b);
	}
}

int oe_merge(int lvl, int lo, int hi, int r){
	int step = r * 2;
	if(step < hi - lo){
		int t1 = oe_merge(lvl, lo, hi, step);
		int t2 = oe_merge(lvl, lo + r, hi, step);
		int t = max(t1, t2);
		for(int i = lo + r; i < hi - r; i += step){
			cmp_swap(t, i, i + r);
		}
		return t + 1;
	}
	else{
		cmp_swap(lvl, lo, lo + r);
		return lvl + 1;
	}
}

int oe_merge_sort_range(int lvl, int lo, int hi){
	if(hi - lo >= 1){
		int mid = lo + ((hi - lo) >> 1);
		int t1 = oe_merge_sort_range(lvl, lo, mid);
		int t2 = oe_merge_sort_range(lvl, mid + 1, hi);
		return oe_merge(max(t1, t2), lo, hi, 1);
	}
	return lvl;
}

int main(){
	fgets(buf, 3000, stdin);
	n = strtol(buf, 0, 10);

	int m = 1;
	while(m < n){ m <<= 1; }
	oe_merge_sort_range(0, 0, m - 1);

	vector<int> v(n);
	for(int i = 0; i < n; ++i){
		v[i] = i + 1;
	}
	for(size_t i = 0; i < cmp.size(); ++i){
		int len = cmp[i].size();
		putchar('?');
		for(int j = 0; j < 2 * n; ++j){
			if(j < len){
				printf(" %d", v[cmp[i][j]]);
			}
			else{
				printf(" 0");
			}
		}
		puts("");
		fflush(stdout);

		fgets(buf, 3000, stdin);
		for(int j = 0; j < len; j += 2){
			if(buf[j] == '>'){
				swap(v[cmp[i][j]], v[cmp[i][j + 1]]);
			}
		}
	}

if(n < 10){
	for(int i=cmp.size();i<3000;++i){
		putchar('?');
		for(int j = 0; j < 2 * n; ++j){
			printf(" 0");
		}
		puts("");
		fflush(stdout);
		fgets(buf, 3000, stdin);
	}
}

	putchar('!');
	for(int i = 0; i < n; ++i){
		printf(" %d", v[i]);
	}
	puts("");
}
0