結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,304 KB
testcase_01 AC 123 ms
40,184 KB
testcase_02 AC 131 ms
41,324 KB
testcase_03 AC 131 ms
41,776 KB
testcase_04 AC 144 ms
41,508 KB
testcase_05 AC 144 ms
41,624 KB
testcase_06 AC 143 ms
41,932 KB
testcase_07 AC 142 ms
41,604 KB
testcase_08 AC 141 ms
41,848 KB
testcase_09 AC 167 ms
42,124 KB
testcase_10 AC 176 ms
41,876 KB
testcase_11 AC 173 ms
42,452 KB
testcase_12 AC 162 ms
42,188 KB
testcase_13 AC 198 ms
42,860 KB
testcase_14 AC 211 ms
43,616 KB
testcase_15 AC 207 ms
43,160 KB
testcase_16 AC 210 ms
43,964 KB
testcase_17 AC 223 ms
44,552 KB
testcase_18 AC 295 ms
47,176 KB
testcase_19 AC 330 ms
47,904 KB
testcase_20 AC 371 ms
48,056 KB
testcase_21 AC 381 ms
48,944 KB
testcase_22 AC 460 ms
47,608 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