結果

問題 No.1385 Simple Geometry 2
ユーザー kotatsugamekotatsugame
提出日時 2021-02-07 23:04:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 500 ms
コード長 1,010 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-04 17:41:11
合計ジャッジ時間 18,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 246 ms
11,520 KB
testcase_14 AC 303 ms
11,520 KB
testcase_15 AC 246 ms
11,648 KB
testcase_16 AC 251 ms
11,648 KB
testcase_17 AC 244 ms
11,392 KB
testcase_18 AC 247 ms
11,648 KB
testcase_19 AC 236 ms
11,520 KB
testcase_20 AC 243 ms
11,520 KB
testcase_21 AC 245 ms
11,648 KB
testcase_22 AC 231 ms
11,520 KB
testcase_23 AC 254 ms
11,776 KB
testcase_24 AC 228 ms
11,776 KB
testcase_25 AC 224 ms
11,392 KB
testcase_26 AC 242 ms
11,520 KB
testcase_27 AC 247 ms
11,648 KB
testcase_28 AC 229 ms
11,392 KB
testcase_29 AC 241 ms
11,648 KB
testcase_30 AC 243 ms
11,648 KB
testcase_31 AC 256 ms
11,648 KB
testcase_32 AC 247 ms
11,776 KB
testcase_33 AC 254 ms
11,648 KB
testcase_34 AC 242 ms
11,648 KB
testcase_35 AC 255 ms
11,520 KB
testcase_36 AC 247 ms
11,776 KB
testcase_37 AC 263 ms
11,648 KB
testcase_38 AC 242 ms
11,520 KB
testcase_39 AC 245 ms
11,520 KB
testcase_40 AC 241 ms
11,776 KB
testcase_41 AC 241 ms
11,648 KB
testcase_42 AC 238 ms
11,648 KB
testcase_43 AC 241 ms
11,648 KB
testcase_44 AC 251 ms
11,520 KB
testcase_45 AC 251 ms
11,648 KB
testcase_46 AC 247 ms
11,648 KB
testcase_47 AC 241 ms
11,648 KB
testcase_48 AC 254 ms
11,648 KB
testcase_49 AC 250 ms
11,776 KB
testcase_50 AC 256 ms
11,776 KB
testcase_51 AC 252 ms
11,520 KB
testcase_52 AC 247 ms
11,520 KB
testcase_53 AC 243 ms
11,648 KB
testcase_54 AC 243 ms
11,776 KB
testcase_55 AC 247 ms
11,776 KB
testcase_56 AC 253 ms
11,520 KB
testcase_57 AC 248 ms
11,648 KB
testcase_58 AC 244 ms
11,392 KB
testcase_59 AC 205 ms
11,520 KB
testcase_60 AC 232 ms
11,392 KB
testcase_61 AC 235 ms
11,648 KB
testcase_62 AC 233 ms
11,776 KB
testcase_63 AC 251 ms
11,520 KB
testcase_64 AC 254 ms
11,776 KB
testcase_65 AC 248 ms
11,648 KB
testcase_66 AC 243 ms
11,520 KB
testcase_67 AC 246 ms
11,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int N;
long L,T[5<<17];
double p[5<<17];
main()
{
	cin>>N>>L;
	for(int i=0;i<N;i++)
	{
		cin>>T[i];
		p[i]=2*M_PI*T[i]/L;
	}
	double ans=0;
	/*
	for(int i=1;i+1<N;i++)
	{
		for(int j=0;j<i;j++)
		{
			for(int k=i+1;k<N;k++)
			{
				double alpha=p[i]-p[j],beta=p[k]-p[i];
				ans+=sin(alpha)+sin(beta)-sin(alpha+beta);
				//ans+=sin(alpha)*sin(beta)*sin(alpha+beta);
			}
		}
	}
	for(int i=0;i<N;i++)for(int j=i+1;j<N;j++)
	{
		//ans+=(i+i-j-j+N)*sin(p[j])*cos(p[i]);
		ans+=(i+i+N)*sin(p[j])*cos(p[i]);
		ans-=(j+j)*sin(p[j])*cos(p[i]);
		ans-=(i+i+N)*cos(p[j])*sin(p[i]);
		ans+=(j+j)*cos(p[j])*sin(p[i]);
	}*/
	double s1=0,s2=0,s3=0,s4=0;
	for(int j=0;j<N;j++)
	{
		ans+=s1*sin(p[j]);
		ans-=(j+j)*s2*sin(p[j]);
		ans-=s3*cos(p[j]);
		ans+=(j+j)*s4*cos(p[j]);
		s1+=(j+j+N)*cos(p[j]);
		s2+=cos(p[j]);
		s3+=(j+j+N)*sin(p[j]);
		s4+=sin(p[j]);
	}
	ans*=3;
	ans/=N;
	ans/=N-1;
	ans/=N-2;
	cout<<fixed<<setprecision(16)<<ans<<endl;
}
0