Submission #3559716


Source Code Expand

#include<cstdio>
#include<iostream>
#include<cstring>
#define RG register
#define LL long long
using namespace std;
const LL mod=1e9+7;
int n,m;
LL dp[301][301][301];
inline int read(){
	char ch=getchar(); int x=0, f=1;
	while(ch<'0' || ch>'9'){if(ch=='-') f=-1; ch=getchar();	}
	while(ch>='0' && ch<='9'){x=x*10+ch-'0'; ch=getchar();	}
	return x*f;}
int main()
{
//	freopen("Road of the King.in","r",stdin);
	//freopen(".out","w",stdout);
	n=read(); m=read();
	dp[0][1][1]=1;
	for(int i=0;i<m;i++)
		for(int j=1;j<=n;j++)
			for(int k=1;k<=j;k++)
			{
				(dp[i+1][j+1][k]+=dp[i][j][k]*(n-j))%=mod;
				(dp[i+1][j][k]+=dp[i][j][k]*(j-k))%=mod;
				(dp[i+1][j][j]+=dp[i][j][k]*k)%=mod;
			}
	printf("%lld\n",dp[m][n][n]);
	//fclose(stdin); fclose(stdout);
	return 0;
}

Submission Info

Submission Time
Task F - Road of the King
User vjudge2
Language C++14 (GCC 5.4.1)
Score 0
Code Size 768 Byte
Status RE
Exec Time 220 ms
Memory 212608 KB

Judge Result

Set Name sample all
Score / Max Score 0 / 0 0 / 1000
Status
AC × 3
AC × 15
RE × 1
Set Name Test Cases
sample sample-01.txt, sample-02.txt, sample-03.txt
all sample-01.txt, sample-02.txt, sample-03.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
01-01.txt AC 1 ms 256 KB
01-02.txt AC 1 ms 256 KB
01-03.txt AC 43 ms 211200 KB
01-04.txt AC 2 ms 896 KB
01-05.txt AC 43 ms 211200 KB
01-06.txt AC 50 ms 211584 KB
01-07.txt AC 118 ms 212480 KB
01-08.txt AC 123 ms 212608 KB
01-09.txt AC 123 ms 212608 KB
01-10.txt RE 220 ms 212608 KB
sample-01.txt AC 2 ms 2304 KB
sample-02.txt AC 64 ms 211968 KB
sample-03.txt AC 63 ms 108032 KB