Submission #993811


Source Code Expand

#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <sstream>
#include <functional>
#include <map>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <list>
#include <numeric>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> P;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const ll INF = 1LL<<29;
#define rep(i,n) for(int (i)=0;(i)<(ll)(n);++(i))
#define repd(i,n,d) for(ll (i)=0;(i)<(ll)(n);(i)+=(d))
#define all(v) (v).begin(), (v).end()
#define pb(x) push_back(x)
#define mp(x,y) make_pair((x),(y))
#define mset(m,v) memset((m),(v),sizeof(m))
#define chmin(X,Y) ((X)>(Y)?X=(Y),true:false)
#define chmax(X,Y) ((X)<(Y)?X=(Y),true:false)
#define fst first
#define snd second
#define UNIQUE(x) (x).erase(unique(all(x)),(x).end())
template<class T> ostream &operator<<(ostream &os, const vector<T> &v){int n=v.size();rep(i,n)os<<v[i]<<(i==n-1?"":" ");return os;}

#define N 310
ll dp[N], dp2[N];
int n, m;
ll mod = 1e9+7;

int main(){
	cin>>n>>m;
	dp[0] = 1;
	rep(i, m){
		memcpy(dp2, dp, sizeof(dp));
		mset(dp, 0);
		for(int j = 0; j <= n; j++){
			if(j<n-1){
				(dp[j]+=dp2[j]*(j+1))%=mod;
				(dp[j+1]+=dp2[j]*(n-j-1))%=mod;
			} else if(j==n-1){
				(dp[j]+=dp2[j]*j)%=mod;
				(dp[j+1]+=dp2[j])%=mod;
			} else if(j==n){
				(dp[j]+=dp2[j]*n)%=mod;
			}
		}
	}
	cout<<dp[n]<<endl;
	return 0;
}

Submission Info

Submission Time
Task F - Road of the King
User Lepton
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1600 Byte
Status WA
Exec Time 5 ms
Memory 256 KB

Judge Result

Set Name sample all
Score / Max Score 0 / 0 0 / 1000
Status
AC × 2
WA × 1
AC × 7
WA × 6
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
Case Name Status Exec Time Memory
01-01.txt AC 2 ms 256 KB
01-02.txt AC 2 ms 256 KB
01-03.txt AC 3 ms 256 KB
01-04.txt AC 2 ms 256 KB
01-05.txt WA 3 ms 256 KB
01-06.txt WA 3 ms 256 KB
01-07.txt WA 4 ms 256 KB
01-08.txt WA 5 ms 256 KB
01-09.txt WA 5 ms 256 KB
01-10.txt AC 5 ms 256 KB
sample-01.txt AC 3 ms 256 KB
sample-02.txt WA 4 ms 256 KB
sample-03.txt AC 4 ms 256 KB