結果

問題 No.3018 簡易版ページランク
ユーザー 37zigen37zigen
提出日時 2016-09-12 18:37:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,328 bytes
コンパイル時間 3,819 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-04-28 12:33:28
合計ジャッジ時間 11,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,528 KB
testcase_01 AC 135 ms
41,352 KB
testcase_02 AC 146 ms
41,280 KB
testcase_03 AC 152 ms
41,404 KB
testcase_04 AC 153 ms
41,556 KB
testcase_05 AC 151 ms
41,468 KB
testcase_06 AC 155 ms
41,572 KB
testcase_07 AC 161 ms
41,632 KB
testcase_08 AC 161 ms
41,704 KB
testcase_09 AC 167 ms
41,716 KB
testcase_10 AC 200 ms
42,008 KB
testcase_11 AC 221 ms
42,276 KB
testcase_12 AC 213 ms
42,524 KB
testcase_13 AC 264 ms
43,048 KB
testcase_14 AC 279 ms
43,692 KB
testcase_15 AC 263 ms
43,664 KB
testcase_16 AC 280 ms
43,920 KB
testcase_17 AC 323 ms
46,076 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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;
		}

		state = MtPow(100, 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;
	}
}
0