結果

問題 No.869 ふたつの距離
ユーザー kmjpkmjp
提出日時 2019-08-22 02:25:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,026 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 181,288 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-10-10 22:36:30
合計ジャッジ時間 29,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 2 ms
6,820 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 2 ms
6,816 KB
testcase_09 RE -
testcase_10 AC 2 ms
6,820 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 AC 2 ms
6,816 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 AC 3 ms
6,820 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 2 ms
6,820 KB
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 AC 2 ms
6,824 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 2 ms
6,816 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 2 ms
6,816 KB
testcase_41 RE -
testcase_42 WA -
testcase_43 RE -
testcase_44 WA -
testcase_45 RE -
testcase_46 AC 6 ms
6,820 KB
testcase_47 AC 42 ms
6,816 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 83 ms
6,824 KB
testcase_58 RE -
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 65 ms
6,816 KB
testcase_62 WA -
testcase_63 AC 228 ms
8,716 KB
testcase_64 AC 47 ms
6,820 KB
testcase_65 RE -
testcase_66 AC 111 ms
6,824 KB
testcase_67 RE -
testcase_68 AC 288 ms
8,972 KB
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 AC 273 ms
8,716 KB
testcase_74 RE -
testcase_75 RE -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 RE -
testcase_85 RE -
testcase_86 AC 292 ms
8,716 KB
testcase_87 WA -
testcase_88 AC 275 ms
8,840 KB
testcase_89 RE -
testcase_90 AC 266 ms
8,972 KB
testcase_91 RE -
testcase_92 RE -
testcase_93 AC 2 ms
6,820 KB
testcase_94 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void solve()':
main.cpp:50:38: warning: 'V' may be used uninitialized [-Wmaybe-uninitialized]
   50 |         x=A*1.0*U*(U-1)/(U*(U-1)+V*(V-1))+0.5;
      |                                    ~~^~~
main.cpp:45:15: note: 'V' was declared here
   45 |         int U,V;
      |               ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,A,B;

long double getrandom() {
	return rand()%100000/100000000.0;
}

vector<long double> hoge(int n,int p) {
	vector<long double> T;
	T.push_back(getrandom());
	while(T.size()<n) T.push_back(T.back()+getrandom());
	if(n<2) return T;
	long double L=0,R=17.3/(n-1);
	int i,x,y;
	FOR(i,100) {
		long double M=(L+R)/2.0;
		int num=0;
		FOR(y,n) FOR(x,y) if((T[y]+y*M)-(T[x]+x*M)<=10) num++;
		if(num>=p) L=M;
		else R=M;
	}
	
	FOR(i,n) T[i]+=L*i;
	return T;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	srand(time(NULL));
	cin>>N>>A>>B;
	int U,V;
	for(U=1;U<=N;U++) {
		V=N-U;
		if(U>=V && U*(U-1)/2+V*(V-1)/2>=A) break;
	}
	x=A*1.0*U*(U-1)/(U*(U-1)+V*(V-1))+0.5;
	y=A-x;
	B-=U*(U-1)/2+V*(V-1)/2;
	vector<long double> S=hoge(U,x);
	vector<long double> T=hoge(V,y);
	vector<pair<long double,long double>> R;
	vector<double> C;
	FORR(s,S) FORR(t,T) {
		C.push_back(sqrt((long double)400-(t-s)*(t-s)));
	}
	sort(ALL(C));
	reverse(ALL(C));
	FORR(s,S) R.push_back({s,C[B-1]});
	FORR(t,T) R.push_back({t,0});
	
	int num[2]={};
	FORR(x,R) FORR(y,R) if(x<y) {
		if(hypot(x.first-y.first,x.second-y.second)<=10) num[0]++;
		if(hypot(x.first-y.first,x.second-y.second)<=20) num[1]++;
	}
	assert(num[0]==A);
	assert(num[1]==B+U*(U-1)/2+V*(V-1)/2);
	//_P("%d %d %d\n",N,num[0],num[1]);
	FORR(r,R) _P("%.12lf %.12lf\n",(double)r.first,(double)r.second);
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0