結果

問題 No.3018 簡易版ページランク
ユーザー 37zigen37zigen
提出日時 2016-09-13 10:26:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 822 ms / 2,000 ms
コード長 1,545 bytes
コンパイル時間 3,831 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 56,980 KB
最終ジャッジ日時 2024-04-28 13:00:09
合計ジャッジ時間 11,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,112 KB
testcase_01 AC 134 ms
41,172 KB
testcase_02 AC 142 ms
41,744 KB
testcase_03 AC 146 ms
41,236 KB
testcase_04 AC 149 ms
41,628 KB
testcase_05 AC 150 ms
41,888 KB
testcase_06 AC 148 ms
41,448 KB
testcase_07 AC 152 ms
41,512 KB
testcase_08 AC 152 ms
41,804 KB
testcase_09 AC 160 ms
41,944 KB
testcase_10 AC 184 ms
42,324 KB
testcase_11 AC 201 ms
42,156 KB
testcase_12 AC 201 ms
42,088 KB
testcase_13 AC 237 ms
43,028 KB
testcase_14 AC 237 ms
43,284 KB
testcase_15 AC 239 ms
43,616 KB
testcase_16 AC 238 ms
43,980 KB
testcase_17 AC 248 ms
45,484 KB
testcase_18 AC 638 ms
55,068 KB
testcase_19 AC 642 ms
56,980 KB
testcase_20 AC 685 ms
56,184 KB
testcase_21 AC 639 ms
56,476 KB
testcase_22 AC 822 ms
56,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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();
		double[][] matrix = new double[n][n];

		for (int i = 0; i < m; i++) {
			int src = sc.nextInt();
			int dst = sc.nextInt();
			int rate = sc.nextInt();
			matrix[dst][src] = rate;
		}
		for (int i = 0; i < n; i++) {
			double sum = 0;
			for (int j = 0; j < n; j++) {
				sum += matrix[j][i];
			}
			for (int j = 0; j < n; j++) {
				matrix[j][i] /= sum;
			}
		}

		double[][] state = new double[n][1];
		for (int i = 0; i < n; i++) {
			state[i][0] = 10;
		}
//		if (n <= 300) {
//			state = MtPow(100, matrix, state);
//		} else {
			for (int i = 0; i < 100; i++) {
				state = MtPrd(matrix, state);
			}
		//		}
		for (int i = 0; i < n; i++) {
			System.out.printf("%f\n", state[i][0]);
			// System.out.println(state[i][0]);
		}

	}

	double[][] MtPow(long n, double[][] A, double[][] v) {
		for (; n > 0; n = n >> 1) {
			if ((n & 1) == 1)
				v = MtPrd(A, v);
			A = MtPrd(A, A);
		}
		return v;
	}

	double[][] MtPrd(double[][] A, double[][] B) {
		double[][] C = new double[A.length][B[0].length];
		for (int i = 0; i < A.length; i++) {
			for (int j = 0; j < B[0].length; j++) {
				for (int k = 0; k < A[0].length; k++) {
					C[i][j] += A[i][k] * B[k][j];
				}
			}
		}
		return C;
	}

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