結果

問題 No.3018 簡易版ページランク
ユーザー kotatsugamekotatsugame
提出日時 2020-03-09 09:08:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 77,296 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 10:15:38
合計ジャッジ時間 1,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<iomanip>
using namespace std;
double A[101][1000];
vector<pair<int,int> >G[1000];
double sum[1000];
int N,M;
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int a,b,c;cin>>a>>b>>c;
		G[a].push_back(make_pair(b,c));
		sum[a]+=c;
	}
	for(int i=0;i<N;i++)A[0][i]=10;
	for(int t=0;t<100;t++)
	{
		for(int i=0;i<N;i++)
		{
			for(pair<int,int>p:G[i])
			{
				A[t+1][p.first]+=A[t][i]*p.second/sum[i];
			}
		}
	}
	for(int i=0;i<N;i++)cout<<fixed<<setprecision(16)<<A[100][i]<<endl;
}
0