結果

問題 No.8018 簡易版ページランク
ユーザー uafr_csuafr_cs
提出日時 2017-11-07 21:24:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 1,598 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 79,448 KB
実行使用メモリ 52,792 KB
最終ジャッジ日時 2024-11-24 04:52:38
合計ジャッジ時間 10,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,760 KB
testcase_01 AC 144 ms
41,688 KB
testcase_02 AC 157 ms
41,992 KB
testcase_03 AC 160 ms
42,180 KB
testcase_04 AC 161 ms
41,744 KB
testcase_05 AC 173 ms
41,968 KB
testcase_06 AC 169 ms
41,932 KB
testcase_07 AC 187 ms
42,456 KB
testcase_08 AC 200 ms
42,500 KB
testcase_09 AC 221 ms
43,084 KB
testcase_10 AC 240 ms
43,168 KB
testcase_11 AC 243 ms
43,112 KB
testcase_12 AC 240 ms
43,132 KB
testcase_13 AC 263 ms
44,944 KB
testcase_14 AC 302 ms
47,252 KB
testcase_15 AC 272 ms
47,020 KB
testcase_16 AC 324 ms
48,204 KB
testcase_17 AC 346 ms
48,940 KB
testcase_18 AC 467 ms
51,036 KB
testcase_19 AC 513 ms
50,944 KB
testcase_20 AC 635 ms
52,296 KB
testcase_21 AC 678 ms
51,052 KB
testcase_22 AC 877 ms
52,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Map.Entry;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		ArrayList<HashMap<Integer, Double>> adj = new ArrayList<HashMap<Integer, Double>>();
		for(int i = 0; i < N; i++){ adj.add(new HashMap<Integer, Double>()); }
		
		for(int i = 0; i < M; i++){
			final int a = sc.nextInt();
			final int b = sc.nextInt();
			final double c = sc.nextDouble();
			
			if(!adj.get(a).containsKey(b)){
				adj.get(a).put(b, c);
			}else{
				adj.get(a).put(b, c);
			}
		}
		
		double[] out_sum = new double[N];
		for(int curr = 0; curr < N; curr++){
			for(final double denom : adj.get(curr).values()){
				out_sum[curr] += denom;
			}
		}
		
		double[] curr_rank = new double[N];
		for(int i = 0; i < N; i++){ curr_rank[i] = 10; }
		double[] next_rank = new double[N];
		
		for(int i = 0; i < 100; i++){
			Arrays.fill(next_rank, 0);
			
			for(int curr = 0; curr < N; curr++){
				for(final Entry<Integer, Double> entry : adj.get(curr).entrySet()){
					final int next = entry.getKey();
					final double mul = entry.getValue();
					
					next_rank[next] += curr_rank[curr] * mul / out_sum[curr];
				}
			}
			
			{
				double[] tmp = curr_rank;
				curr_rank = next_rank;
				next_rank = tmp;
			}
		}
		
		for(int i = 0; i < N; i++){
			System.out.printf("%.08f\n", curr_rank[i]);
		}

	}
}
0