結果

問題 No.444 旨味の相乗効果
ユーザー cielciel
提出日時 2016-11-15 18:37:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 60,408 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 14:00:13
合計ジャッジ時間 1,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:17:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   17 | main(){
      | ^~~~

ソースコード

diff #

#include <valarray>
#include <cstdio>
using namespace std;
typedef valarray<long long>V;
int n,m=1000000007;
V z;
V &Me(const V &_x,const V &_y){
	int i=0,j;
	for(;i<n;i++)for(j=0;j<n;j++)z[i*n+j]=(_x[slice(i*n,n,1)]*_y[slice(j,n,n)]).sum()%m;
	return z;
}
V &Mx(const V &_x){
	int i=0,j;
	for(;i<n;i++)for(j=0;j<n;j++)z[i*n+j]=(_x[slice(i*n,n,1)]*_x[slice(j,n,n)]).sum()%m;
	return z;
}
main(){
	long long R=0,r;
	int y,i=0,j;
	scanf("%d%lld",&n,&r);
	V x(n*n);
	V e(n*n);
	z.resize(n*n);
	for(;i<n;i++){
		scanf("%d",&y);
		e[i*n+i]=1;
		for(j=0;j<=i;j++)x[i*n+j]=y;
	}
	for(;r;r>>=1){
		if(r&1)e=Me(e,x);
		x=Mx(x);
	}
	for(i=0;i<n;i++)R+=m+e[i*n]-e[i*n+i];
	printf("%lld\n",(R%m+m)%m);
}
0