結果

問題 No.444 旨味の相乗効果
ユーザー 37zigen37zigen
提出日時 2016-11-12 02:23:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 348 ms / 2,500 ms
コード長 1,574 bytes
コンパイル時間 3,851 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 45,532 KB
最終ジャッジ日時 2024-06-24 20:54:36
合計ジャッジ時間 9,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,228 KB
testcase_01 AC 114 ms
41,656 KB
testcase_02 AC 124 ms
41,208 KB
testcase_03 AC 126 ms
41,728 KB
testcase_04 AC 348 ms
45,488 KB
testcase_05 AC 129 ms
41,460 KB
testcase_06 AC 130 ms
41,220 KB
testcase_07 AC 164 ms
41,228 KB
testcase_08 AC 181 ms
41,456 KB
testcase_09 AC 146 ms
41,676 KB
testcase_10 AC 127 ms
41,484 KB
testcase_11 AC 145 ms
41,736 KB
testcase_12 AC 258 ms
43,740 KB
testcase_13 AC 216 ms
42,836 KB
testcase_14 AC 151 ms
41,480 KB
testcase_15 AC 126 ms
41,448 KB
testcase_16 AC 345 ms
45,356 KB
testcase_17 AC 128 ms
41,648 KB
testcase_18 AC 136 ms
41,524 KB
testcase_19 AC 179 ms
42,416 KB
testcase_20 AC 329 ms
45,532 KB
testcase_21 AC 126 ms
41,516 KB
testcase_22 AC 129 ms
41,516 KB
testcase_23 AC 127 ms
41,192 KB
testcase_24 AC 156 ms
42,100 KB
testcase_25 AC 124 ms
41,660 KB
testcase_26 AC 123 ms
41,440 KB
testcase_27 AC 125 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q444 {
	static final long MODULO = 1_000_000_000 + 7;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long c = sc.nextLong();
		long[] a = new long[n];
		for (int i = 0; i < n; ++i) {
			a[i] = sc.nextLong() % MODULO;
		}
		long[][] vec = new long[n][1];
		for (int i = 0; i < n; ++i) {
			vec[i][0] = 1;
		}
		long[][] mx = new long[n][n];
		for (int i = 0; i < n; ++i) {
			for (int j = 0; j <= i; ++j) {
				mx[i][j] = a[j];
			}
		}
		vec = pow(mx, vec, c);
		long ans = vec[n - 1][0];
		for (int i = 0; i < n; ++i) {
			ans = (ans - pow(a[i], c) + MODULO) % MODULO;
		}
		System.out.println(ans);
	}

	static long[][] pow(long[][] mx, long[][] vec, long n) {
		for (; n > 0; n >>= 1, mx = mul(mx, mx)) {
			if (n % 2 == 1) {
				vec = mul(mx, vec);
			}
		}
		return vec;
	}

	static long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = (a * a) % MODULO) {
			if (n % 2 == 1) {
				ret = (ret * a) % MODULO;
			}
		}
		return ret;
	}

	static long[][] mul(long[][] A, long[][] B) {
		if (A[0].length != B.length)
			throw new AssertionError();
		int mid = A[0].length;
		long[][] ret = new long[A.length][B[0].length];
		for (int i = 0; i < A.length; ++i) {
			for (int j = 0; j < B[0].length; ++j) {
				for (int k = 0; k < mid; ++k) {
					ret[i][j] += A[i][k] * B[k][j] % MODULO;
					ret[i][j] %= MODULO;
				}
			}
		}
		return ret;
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0