結果

問題 No.65 回数の期待値の練習
ユーザー ぴろずぴろず
提出日時 2014-12-12 09:38:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 2,247 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-06-11 20:55:50
合計ジャッジ時間 4,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,784 KB
testcase_01 AC 120 ms
54,124 KB
testcase_02 AC 114 ms
53,920 KB
testcase_03 AC 97 ms
52,924 KB
testcase_04 AC 115 ms
54,028 KB
testcase_05 AC 101 ms
52,916 KB
testcase_06 AC 111 ms
54,044 KB
testcase_07 AC 99 ms
53,224 KB
testcase_08 AC 117 ms
54,108 KB
testcase_09 AC 118 ms
54,132 KB
testcase_10 AC 111 ms
54,044 KB
testcase_11 AC 112 ms
54,020 KB
testcase_12 AC 102 ms
52,888 KB
testcase_13 AC 103 ms
53,072 KB
testcase_14 AC 102 ms
53,048 KB
testcase_15 AC 115 ms
53,820 KB
testcase_16 AC 102 ms
53,052 KB
testcase_17 AC 116 ms
54,204 KB
testcase_18 AC 121 ms
53,892 KB
testcase_19 AC 115 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no065;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int k = sc.nextInt();
		double[][] a = new double[k][k];
		double[] b = new double[k];
		for(int i=0;i<k;i++) {
			a[i][i] = 1;
			b[i] = 1;
			for(int j=1;j<=6;j++) {
				if (i + j < k) {
					a[i][i+j] = - 1 / 6D;
				}
			}
		}
		System.out.println(Matrix.solveEquation(a, b)[0]);
	}

}

class Matrix {
	public static final double EPS = 1E-8;
	public static double[][] add(double[][] a,double[][] b) {
		int n = a.length;
		int m = a[0].length;
		double[][] c = new double[n][m];
		for(int i=0;i<n;i++) {
			for(int j=0;j<m;j++) {
				c[i][j] = a[i][j] + b[i][j];
			}
		}
		return c;
	}
	public static double[][] muliply(double[][] a,double k) {
		int n = a.length;
		int m = a[0].length;
		double[][] c = new double[n][m];
		for(int i=0;i<n;i++) {
			for(int j=0;j<m;j++) {
				c[i][j] = a[i][j] * k;
			}
		}
		return c;
	}
	public static double[][] muliply(double[][] a,double[][] b) {
		int n = a.length;
		int m = b[0].length;
		double[][] c = new double[n][m];
		for(int i=0;i<n;i++) {
			for(int j=0;j<m;j++) {
				for(int k=0;k<n;k++) {
					c[i][j] += a[i][k] * b[k][j];
				}
			}
		}
		return c;
	}
	//disruptive
	public static double[] solveEquation(double[][] A,double[] b) {
		int n = A.length;
		double[][] B = new double[n][n+1];
		for(int i=0;i<n;i++) {
			for(int j=0;j<n;j++) {
				B[i][j] = A[i][j];
			}
			B[i][n] = b[i];
		}
		for(int i=0;i<n;i++) {
			int pivot = i;
			for(int j=i;j<n;j++) {
				if (Math.abs(B[j][i]) > Math.abs(B[pivot][i])) {
					pivot = j;
				}

			}
			swapRow(B, i, pivot);
			if (Math.abs(B[i][i]) < EPS) {
				return null;
			}
			for(int j=i+1;j<=n;j++) {
				B[i][j] /= B[i][i];
			}
			for(int j=0;j<n;j++) {
				if (i==j) {
					continue;
				}
				for(int k=i+1;k<=n;k++) {
					B[j][k] -= B[j][i] * B[i][k];
				}
			}
		}
		double[] x = new double[n];
		for(int i=0;i<n;i++) {
			x[i] = B[i][n];
		}
		return x;
	}
	public static void swapRow(double[][] A,int i,int j) {
		double[] temp = A[i];
		A[i] = A[j];
		A[j] = temp;
	}
}
0