結果

問題 No.3018 簡易版ページランク
ユーザー 37zigen37zigen
提出日時 2016-09-21 16:05:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 1,526 bytes
コンパイル時間 6,331 ms
コンパイル使用メモリ 86,036 KB
実行使用メモリ 49,556 KB
最終ジャッジ日時 2024-11-17 10:24:46
合計ジャッジ時間 11,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,352 KB
testcase_01 AC 139 ms
41,700 KB
testcase_02 AC 148 ms
41,624 KB
testcase_03 AC 142 ms
41,448 KB
testcase_04 AC 152 ms
41,624 KB
testcase_05 AC 160 ms
42,028 KB
testcase_06 AC 156 ms
41,704 KB
testcase_07 AC 160 ms
41,580 KB
testcase_08 AC 160 ms
42,008 KB
testcase_09 AC 170 ms
42,120 KB
testcase_10 AC 196 ms
42,624 KB
testcase_11 AC 204 ms
42,232 KB
testcase_12 AC 183 ms
42,104 KB
testcase_13 AC 223 ms
42,932 KB
testcase_14 AC 231 ms
43,956 KB
testcase_15 AC 231 ms
43,316 KB
testcase_16 AC 244 ms
43,976 KB
testcase_17 AC 252 ms
45,164 KB
testcase_18 AC 337 ms
46,560 KB
testcase_19 AC 357 ms
47,928 KB
testcase_20 AC 412 ms
48,228 KB
testcase_21 AC 432 ms
49,240 KB
testcase_22 AC 541 ms
49,556 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