結果

問題 No.3018 簡易版ページランク
ユーザー 37zigen37zigen
提出日時 2016-09-13 10:41:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 1,381 bytes
コンパイル時間 3,692 ms
コンパイル使用メモリ 79,100 KB
実行使用メモリ 57,688 KB
最終ジャッジ日時 2024-11-17 04:45:17
合計ジャッジ時間 10,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,148 KB
testcase_01 AC 140 ms
52,104 KB
testcase_02 AC 147 ms
51,996 KB
testcase_03 AC 151 ms
52,152 KB
testcase_04 AC 152 ms
51,912 KB
testcase_05 AC 158 ms
52,156 KB
testcase_06 AC 158 ms
52,044 KB
testcase_07 AC 160 ms
52,404 KB
testcase_08 AC 159 ms
52,404 KB
testcase_09 AC 171 ms
52,192 KB
testcase_10 AC 204 ms
52,384 KB
testcase_11 AC 205 ms
52,304 KB
testcase_12 AC 185 ms
51,788 KB
testcase_13 AC 218 ms
52,456 KB
testcase_14 AC 240 ms
53,100 KB
testcase_15 AC 235 ms
52,832 KB
testcase_16 AC 244 ms
53,528 KB
testcase_17 AC 256 ms
54,116 KB
testcase_18 AC 332 ms
57,208 KB
testcase_19 AC 353 ms
57,112 KB
testcase_20 AC 398 ms
57,272 KB
testcase_21 AC 440 ms
57,132 KB
testcase_22 AC 534 ms
57,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Q1191 {
	public static void main(String[] args) {
		new Q1191().solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		ArrayList<Edge>[] g = new ArrayList[n];
		for (int i = 0; i < n; i++) {
			g[i] = new ArrayList<>();
		}

		for (int i = 0; i < m; i++) {
			int src = sc.nextInt();
			int dst = sc.nextInt();
			int rate = sc.nextInt();
			g[src].add(new Edge(src, dst, rate));
		}
		for (int i = 0; i < n; i++) {
			double sum = 0;
			for (Edge e : g[i]) {
				sum += e.rate;
			}
			for (Edge e : g[i]) {
				e.rate /= sum;
			}
		}
		double[][] population = new double[2][n];
		for (int i = 0; i < n; i++) {
			population[0][i] = 10;
		}
		for (int i = 0; i < 100; i++) {
			Arrays.fill(population[(i + 1) % 2], 0);
			for (int j = 0; j < n; j++) {
				for (Edge e : g[j]) {
					population[(i + 1) % 2][e.dst] += population[i % 2][e.src] * e.rate;
				}
			}
		}
		for (int i = 0; i < n; i++) {
			System.out.printf("%f\n", population[(99 + 1) % 2][i]);
		}

	}

	class Edge {
		int src;
		int dst;
		double rate;

		Edge(int src, int dst, double rate) {
			this.src = src;
			this.dst = dst;
			this.rate = rate;
		}
	}

	void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}
}
0