結果

問題 No.282 おもりと天秤(2)
ユーザー climpetclimpet
提出日時 2015-09-18 23:55:45
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 695 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 48,676 KB
実行使用メモリ 25,220 KB
平均クエリ数 117.79
最終ジャッジ日時 2024-07-16 06:00:23
合計ジャッジ時間 11,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,580 KB
testcase_01 AC 73 ms
24,964 KB
testcase_02 AC 33 ms
24,836 KB
testcase_03 AC 29 ms
25,220 KB
testcase_04 AC 26 ms
24,964 KB
testcase_05 AC 52 ms
25,220 KB
testcase_06 AC 87 ms
24,836 KB
testcase_07 AC 27 ms
24,964 KB
testcase_08 AC 87 ms
25,220 KB
testcase_09 AC 24 ms
24,892 KB
testcase_10 AC 2,731 ms
24,836 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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int cmp(const void*, const void*)’:
main.cpp:16:14: warning: ignoring return value of ‘char* fgets(char*, int, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |         fgets(buf, 3000, stdin);
      |         ~~~~~^~~~~~~~~~~~~~~~~~
main.cpp: In function ‘int main()’:
main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |         scanf("%d%*c", &n);
      |         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <vector>
#include <string>
using namespace std;

int n;
string rest;
char buf[3000];

int cmp(const void *p, const void *q){
	int a = *static_cast<const int*>(p);
	int b = *static_cast<const int*>(q);
	printf("? %d %d%s", a, b, rest.c_str());
	fflush(stdout);
	fgets(buf, 3000, stdin);
	if(buf[0] == '<'){ return -1; }
	if(buf[0] == '>'){ return 1; }
	return 0;
}

int main(){
	scanf("%d%*c", &n);
	for(int i = 1; i < n; ++i){
		rest += " 0 0";
	}
	rest += '\n';
	vector<int> v(n);
	for(int i = 0; i < n; ++i){
		v[i] = i + 1;
	}
	qsort(&v[0], n, sizeof(int), cmp);
	putchar('!');
	for(int i = 0; i < n; ++i){
		printf(" %d", v[i]);
	}
	puts("");
}
0