結果

問題 No.463 魔法使いのすごろく🎲
ユーザー uwiuwi
提出日時 2016-12-14 01:09:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 6,020 bytes
コンパイル時間 3,591 ms
コンパイル使用メモリ 91,524 KB
実行使用メモリ 60,416 KB
最終ジャッジ日時 2024-05-07 13:18:19
合計ジャッジ時間 13,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
55,388 KB
testcase_01 AC 156 ms
54,184 KB
testcase_02 AC 153 ms
54,328 KB
testcase_03 AC 113 ms
54,212 KB
testcase_04 AC 180 ms
55,548 KB
testcase_05 AC 202 ms
57,564 KB
testcase_06 AC 107 ms
53,792 KB
testcase_07 AC 132 ms
54,344 KB
testcase_08 AC 168 ms
54,004 KB
testcase_09 AC 327 ms
58,252 KB
testcase_10 AC 134 ms
53,784 KB
testcase_11 AC 232 ms
57,524 KB
testcase_12 AC 178 ms
56,048 KB
testcase_13 AC 110 ms
53,748 KB
testcase_14 AC 320 ms
58,396 KB
testcase_15 AC 297 ms
58,324 KB
testcase_16 AC 114 ms
53,660 KB
testcase_17 AC 278 ms
58,012 KB
testcase_18 AC 115 ms
54,064 KB
testcase_19 AC 131 ms
53,804 KB
testcase_20 WA -
testcase_21 AC 361 ms
58,396 KB
testcase_22 AC 48 ms
50,232 KB
testcase_23 AC 368 ms
58,512 KB
testcase_24 AC 308 ms
58,440 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 369 ms
58,388 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 119 ms
53,896 KB
testcase_36 AC 104 ms
53,604 KB
testcase_37 AC 119 ms
53,996 KB
testcase_38 AC 48 ms
50,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package adv2016;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.InputMismatchException;

public class N463_2 {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		int n = ni(), m = ni();
		if(n == 2){
			out.println(0);
			return;
		}
		if(m == n-1){
			out.println(0);
			return;
		}
		int[] c = na(n-2);
		
		double[][] M = new double[2*n][2*n];
		for(int i = 0;i < n;i++){
			if(i < n-1){
				for(int j = 1;j <= m;j++){
					int x = i + j;
					if(x >= n)x = 2*n-2-x;
					M[i][x] += 1./m;
					M[i+n][x+n] += 1./m;
					if(x >= 1 && x-1 < c.length)M[i][x+n] += (double)c[x-1]/m;
				}
			}
		}
		M[n][n] = 1;
		double[] start = new double[2*n];
		start[2*n-1] = 1;
		double[] es0 = S(M, start);
		
		double[] es1 = new double[n];
		for(int i = n-m-1;i >= 0;i--){
			double e = 0;
			for(int j = 1;j <= m;j++){
				e += 1./m*(es1[i+j] + (i+j-1 < c.length ? c[i+j-1] : 0.));
			}
			for(int j = 1;j <= m;j++){
				e = Math.min(e, es0[i+j]+(i+j-1 < c.length ? c[i+j-1] : 0.));
			}
			es1[i] = e;
		}
//		tr(es1);
		
		out.printf("%.14f\n", es1[0]);
	}
	
	public static double[] S(double[][] T, double[] v)
	{
		int n = T.length;
		double[][] X = new double[n][n];
		// ...(1+T^4)(1+T^2)(1+T)v
		for(int rep = 0;rep < 1000;rep++){ // FIXME
			for(int i = 0;i < n;i++){
				X[i][i] = 1;
				for(int j = 0;j < n;j++){
					X[i][j] += T[i][j];
				}
			}
			v = mul(X, v);
			
			double[][] U = p2(T);
			double norm = 0;
			for(int i = 0;i < n;i++){
				for(int j = 0;j < n;j++){
					double d = T[i][j]-U[i][j];
					norm += d*d;
				}
			}
			if(norm == 0)break;
			T = U;
		}
		return v;
	}

	public static double[] mul(double[][] A, double[] v)
	{
		int m = A.length;
		int n = v.length;
		double[] w = new double[m];
		for(int i = 0;i < m;i++){
			double sum = 0;
			for(int k = 0;k < n;k++){
				sum += A[i][k] * v[k];
			}
			w[i] = sum;
		}
		return w;
	}
	
	public static double[][] p2(double[][] A)
	{
		int n = A.length;
		double[][] C = new double[n][n];
		for(int i = 0;i < n;i++){
			for(int k = 0;k < n;k++){
				for(int j = 0;j < n;j++){
					C[i][j] += A[i][k] * A[k][j];
				}
			}
		}
		return C;
	}
	
	public static double[] solve(double[][] a, double[] c)
	{
		int n = a.length;
		int[] ps = new int[n];
		for(int i = 0;i < n;i++)ps[i] = i;
		
		// Forward Elimination
		for(int i = 0;i < n;i++){
			int pivot = -1;
			int from = -1;
			double amax = 0;
			for(int j = i;j < n;j++){
				if(Math.abs(a[ps[j]][i]) > amax){
					amax = Math.abs(a[ps[j]][i]);
					pivot = ps[j];
					from = j;
				}
			}
			if(pivot == -1)return null;
			int d = ps[i]; ps[i] = ps[from]; ps[from] = d;
			
			for(int j = i+1;j < n;j++){
				a[ps[i]][j] /= a[ps[i]][i];
			}
			c[ps[i]] /= a[ps[i]][i];
			a[ps[i]][i] = 1.0;
			for(int j = i+1;j < n;j++){
				for(int k = i+1;k < n;k++){
					a[ps[j]][k] -= a[ps[j]][i] * a[ps[i]][k];
				}
				c[ps[j]] -= a[ps[j]][i] * c[ps[i]];
				a[ps[j]][i] = 0.0;
			}
			
		}
		
		// Back Substitution
		for(int i = n-1;i >= 0;i--){
			for(int j = i-1;j >= 0;j--){
				c[ps[j]] -= a[ps[j]][i] * c[ps[i]];
			}
		}
		
		double[] ret = new double[n];
		for(int i = 0;i < n;i++){
			ret[i] = c[ps[i]];
		}
		
		return ret;
	}

	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//		Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){
//			@Override
//			public void run() {
//				long s = System.currentTimeMillis();
//				solve();
//				out.flush();
//				if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//			}
//		};
//		t.start();
//		t.join();
	}
	
	public static void main(String[] args) throws Exception { new N463_2().run(); }
	
	private byte[] inbuf = new byte[1024];
	public int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private long[] nal(int n)
	{
		long[] a = new long[n];
		for(int i = 0;i < n;i++)a[i] = nl();
		return a;
	}
	
	private char[][] nm(int n, int m) {
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[][] nmi(int n, int m) {
		int[][] map = new int[n][];
		for(int i = 0;i < n;i++)map[i] = na(m);
		return map;
	}
	
	private int ni() { return (int)nl(); }
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0