結果

問題 No.1121 Social Distancing in Cinema
ユーザー kotatsugamekotatsugame
提出日時 2020-07-22 21:37:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 740 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 79,768 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-06-22 14:28:43
合計ジャッジ時間 12,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,764 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 180 ms
6,940 KB
testcase_18 AC 546 ms
7,552 KB
testcase_19 AC 711 ms
8,140 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 43 ms
6,944 KB
testcase_26 AC 65 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 522 ms
7,680 KB
testcase_29 AC 57 ms
6,940 KB
testcase_30 AC 61 ms
6,940 KB
testcase_31 AC 683 ms
8,320 KB
testcase_32 AC 407 ms
7,040 KB
testcase_33 AC 92 ms
6,944 KB
testcase_34 AC 91 ms
6,944 KB
testcase_35 AC 472 ms
7,288 KB
testcase_36 AC 648 ms
8,104 KB
testcase_37 AC 54 ms
6,940 KB
testcase_38 AC 115 ms
6,944 KB
testcase_39 AC 535 ms
8,608 KB
testcase_40 AC 31 ms
6,944 KB
testcase_41 AC 8 ms
6,944 KB
testcase_42 AC 641 ms
8,064 KB
testcase_43 AC 617 ms
8,064 KB
testcase_44 TLE -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N;
int X[3<<17],Y[3<<17];
main()
{
	cin>>N;
	vector<pair<pair<int,int>,int> >A(N);
	for(int i=0;i<N;i++)
	{
		cin>>X[i]>>Y[i];
		A[i].first.first=X[i];
		A[i].first.second=Y[i];
		A[i].second=i;
	}
	sort(A.begin(),A.end());
	vector<int>ans;
	int id=0;
	while(ans.size()*90<N)
	{
		while(id<N)
		{
			bool ok=true;
			for(int jd:ans)
			{
				int dx=A[id].first.first-X[jd],dy=A[id].first.second-Y[jd];
				if(dx*dx+dy*dy<100)
				{
					ok=false;
					break;
				}
			}
			if(ok)
			{
				ans.push_back(A[id].second);
				break;
			}
			id++;
		}
		id++;
	}
	cout<<ans.size()<<endl;
	for(int i=0;i<ans.size();i++)cout<<ans[i]+1<<(i+1==ans.size()?"\n":" ");
}
0