結果

問題 No.202 1円玉投げ
ユーザー cielciel
提出日時 2015-05-12 03:02:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 527 ms / 5,000 ms
コード長 675 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 52,480 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-06-01 20:12:09
合計ジャッジ時間 5,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
8,320 KB
testcase_01 AC 173 ms
10,112 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 243 ms
8,704 KB
testcase_07 AC 296 ms
9,216 KB
testcase_08 AC 300 ms
9,216 KB
testcase_09 AC 112 ms
7,168 KB
testcase_10 AC 31 ms
5,504 KB
testcase_11 AC 81 ms
6,784 KB
testcase_12 AC 83 ms
6,784 KB
testcase_13 AC 35 ms
5,632 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 103 ms
7,296 KB
testcase_16 AC 102 ms
8,320 KB
testcase_17 AC 98 ms
8,320 KB
testcase_18 AC 101 ms
8,448 KB
testcase_19 AC 94 ms
7,028 KB
testcase_20 AC 204 ms
8,448 KB
testcase_21 AC 94 ms
6,944 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 138 ms
8,320 KB
testcase_36 AC 190 ms
8,320 KB
testcase_37 AC 334 ms
9,472 KB
testcase_38 AC 139 ms
8,448 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:27:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::set<std::pair<int, int> >::size_type’ {aka ‘long unsigned int’} [-Wformat=]
   27 |         printf("%d\n",se.size());
      |                 ~^    ~~~~~~~~~
      |                  |           |
      |                  int         std::set<std::pair<int, int> >::size_type {aka long unsigned int}
      |                 %ld
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~
main.cpp:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 scanf("%d%d",&x,&y);
      |                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <set>
#include <cstdio>
using namespace std;
typedef pair<int,int> pii;

int main(){
	int N;
	scanf("%d",&N);
	vector<pair<int,int> >v(N);
	set<int>kindx,kindy;
	for(int i=0;i<N;i++){
		int x,y;
		scanf("%d%d",&x,&y);
		v[i]={x,y};
		kindx.insert(x),kindy.insert(y);
	}
	if(kindx.size()<kindy.size())for(int i=0;i<N;i++)swap(v[i].first,v[i].second);
	set<pii>se;
	for(int i=0;i<N;i++){
		int x=v[i].first,y=v[i].second;
		pii A={x-20,0},B={x+20,1<<30};
		auto a=se.lower_bound(A),b=se.upper_bound(B);
		for(;a!=b;++a)if((a->first-x)*(a->first-x) + (a->second-y)*(a->second-y) < 400)break;
		if(a==b)se.insert({x,y});
	}
	printf("%d\n",se.size());
}
0