結果

問題 No.3018 簡易版ページランク
ユーザー kokoa1046kokoa1046
提出日時 2018-01-31 10:41:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 1,524 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 79,996 KB
実行使用メモリ 63,036 KB
最終ジャッジ日時 2024-06-09 12:38:57
合計ジャッジ時間 9,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,196 KB
testcase_01 AC 127 ms
54,076 KB
testcase_02 AC 131 ms
54,432 KB
testcase_03 AC 135 ms
54,404 KB
testcase_04 AC 141 ms
54,236 KB
testcase_05 AC 141 ms
54,128 KB
testcase_06 AC 164 ms
55,348 KB
testcase_07 AC 158 ms
54,508 KB
testcase_08 AC 162 ms
54,500 KB
testcase_09 AC 188 ms
54,688 KB
testcase_10 AC 210 ms
56,988 KB
testcase_11 AC 212 ms
56,876 KB
testcase_12 AC 199 ms
56,680 KB
testcase_13 AC 235 ms
57,768 KB
testcase_14 AC 265 ms
59,220 KB
testcase_15 AC 256 ms
59,096 KB
testcase_16 AC 270 ms
59,860 KB
testcase_17 AC 279 ms
59,612 KB
testcase_18 AC 405 ms
61,700 KB
testcase_19 AC 435 ms
62,472 KB
testcase_20 AC 541 ms
61,800 KB
testcase_21 AC 556 ms
63,036 KB
testcase_22 AC 742 ms
62,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
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();
			

			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.clone();
				//next_rank = curr_rank.clone();
			}
		}
		
		for(int i = 0; i < N; i++){
			System.out.printf("%.08f\n", curr_rank[i]);
		}

	}
}
0