結果

問題 No.444 旨味の相乗効果
ユーザー hermione17hermione17
提出日時 2016-11-11 23:48:02
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,469 bytes
コンパイル時間 4,203 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 114,792 KB
最終ジャッジ日時 2024-11-25 09:53:59
合計ジャッジ時間 57,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
60,788 KB
testcase_01 AC 338 ms
113,628 KB
testcase_02 AC 341 ms
62,984 KB
testcase_03 AC 473 ms
113,312 KB
testcase_04 TLE -
testcase_05 AC 560 ms
113,880 KB
testcase_06 AC 341 ms
63,280 KB
testcase_07 AC 793 ms
113,624 KB
testcase_08 AC 834 ms
64,480 KB
testcase_09 AC 1,391 ms
63,288 KB
testcase_10 AC 1,409 ms
63,824 KB
testcase_11 AC 1,175 ms
114,160 KB
testcase_12 AC 2,481 ms
63,956 KB
testcase_13 AC 2,436 ms
114,512 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 201 ms
53,764 KB
testcase_22 AC 200 ms
54,252 KB
testcase_23 TLE -
testcase_24 AC 211 ms
54,640 KB
testcase_25 TLE -
testcase_26 AC 2,228 ms
56,848 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

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