結果

問題 No.3018 簡易版ページランク
ユーザー 37zigen37zigen
提出日時 2016-09-21 16:05:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 1,526 bytes
コンパイル時間 4,252 ms
コンパイル使用メモリ 79,620 KB
実行使用メモリ 56,612 KB
最終ジャッジ日時 2024-04-28 16:45:37
合計ジャッジ時間 10,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
50,384 KB
testcase_01 AC 138 ms
49,824 KB
testcase_02 AC 145 ms
50,008 KB
testcase_03 AC 148 ms
50,336 KB
testcase_04 AC 157 ms
50,104 KB
testcase_05 AC 160 ms
50,232 KB
testcase_06 AC 161 ms
49,888 KB
testcase_07 AC 164 ms
50,232 KB
testcase_08 AC 162 ms
50,384 KB
testcase_09 AC 170 ms
49,788 KB
testcase_10 AC 208 ms
50,336 KB
testcase_11 AC 213 ms
50,852 KB
testcase_12 AC 183 ms
50,272 KB
testcase_13 AC 229 ms
50,652 KB
testcase_14 AC 237 ms
51,320 KB
testcase_15 AC 236 ms
50,804 KB
testcase_16 AC 244 ms
52,008 KB
testcase_17 AC 251 ms
52,456 KB
testcase_18 AC 328 ms
55,108 KB
testcase_19 AC 353 ms
55,428 KB
testcase_20 AC 372 ms
55,268 KB
testcase_21 AC 405 ms
56,292 KB
testcase_22 AC 513 ms
56,612 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();
		assert 1<n&&n<=1000;
		int m = sc.nextInt();
		assert 1<m&&m<=10000;
		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();
			assert src!=dst;
			assert 0<=src&&src<n;
			assert 0<=dst&&dst<n;
			int rate = sc.nextInt();
			assert 0<rate&&rate<=10;	
			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