結果

問題 No.444 旨味の相乗効果
ユーザー hermione17hermione17
提出日時 2016-11-11 23:48:02
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,469 bytes
コンパイル時間 3,587 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 52,852 KB
最終ジャッジ日時 2024-05-04 03:24:00
合計ジャッジ時間 8,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
47,748 KB
testcase_01 AC 295 ms
42,392 KB
testcase_02 AC 282 ms
42,416 KB
testcase_03 AC 408 ms
43,400 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y444 {
	Scanner in = new Scanner(System.in);
	PrintStream out = new PrintStream(System.out);

	long MOD = 1000000007;
	
	
	Y444() throws Exception {
		int n = in.nextInt();
		long c = in.nextLong();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = in.nextInt();
		}
		
		Matrix m = new Matrix();
		for (int i = 0; i < n; i++) {
			m.a[i][i] = a[i];
			m.a[i+n][i+n] = a[i];
			for (int j = 0; j < i; j++) {
				m.a[i+n][j] = a[i];
				m.a[i+n][j+n] = a[i];
			}
		}
				
		Matrix power = m.pow(c - 1);
		long ans = 0;
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < n; j++) {
				ans = (ans + a[j] * power.a[i+n][j]) % MOD;
			}
		}

		power=m.mul(m);
		out.println(ans);
	}

	public static void main(String argv[]) throws Exception {
		new Y444();
	}

	
	
	class Matrix {
		long[][] a = new long[160][160];

		Matrix mul(Matrix that) {
			Matrix ret = new Matrix();
			for (int i = 0; i < a.length; i++) {
				for (int j = 0; j < a.length; j++) {
					for (int k = 0; k < a.length; k++) {
						ret.a[i][k] = (ret.a[i][k] + a[i][j] * that.a[j][k]) % MOD;
					}
				}
			}
			return ret;
		}

		Matrix pow(long p) {
			Matrix ret = new Matrix();
			Matrix x = this;
			
			for (int i = 0; i < a.length; i++) {
				ret.a[i][i] = 1;
			}
			
			while (p > 0) {
				if ((p & 1) == 1) {
					ret = x.mul(ret);
				}
				x = x.mul(x);
				p >>= 1;
			}
			
			return ret;
		}
	}
}
0