結果

問題 No.444 旨味の相乗効果
ユーザー hermione17hermione17
提出日時 2016-11-11 23:53:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 944 ms / 2,500 ms
コード長 1,579 bytes
コンパイル時間 3,231 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 57,532 KB
最終ジャッジ日時 2024-05-04 03:35:23
合計ジャッジ時間 17,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
53,968 KB
testcase_01 AC 181 ms
56,356 KB
testcase_02 AC 188 ms
56,548 KB
testcase_03 AC 210 ms
56,408 KB
testcase_04 AC 944 ms
57,412 KB
testcase_05 AC 212 ms
56,196 KB
testcase_06 AC 187 ms
56,616 KB
testcase_07 AC 257 ms
56,816 KB
testcase_08 AC 271 ms
56,820 KB
testcase_09 AC 375 ms
56,932 KB
testcase_10 AC 374 ms
56,836 KB
testcase_11 AC 320 ms
56,908 KB
testcase_12 AC 552 ms
57,372 KB
testcase_13 AC 561 ms
57,472 KB
testcase_14 AC 571 ms
57,160 KB
testcase_15 AC 569 ms
57,204 KB
testcase_16 AC 939 ms
57,276 KB
testcase_17 AC 836 ms
56,736 KB
testcase_18 AC 828 ms
57,176 KB
testcase_19 AC 769 ms
57,248 KB
testcase_20 AC 783 ms
57,532 KB
testcase_21 AC 127 ms
53,708 KB
testcase_22 AC 123 ms
53,896 KB
testcase_23 AC 910 ms
57,152 KB
testcase_24 AC 155 ms
54,244 KB
testcase_25 AC 738 ms
56,772 KB
testcase_26 AC 519 ms
57,292 KB
testcase_27 AC 902 ms
56,792 KB
権限があれば一括ダウンロードができます

ソースコード

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]);
					}
					
					if ((j & 7) == 7) {
						for (int k = 0; k < a.length; k++) {
							ret.a[i][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