結果
問題 | No.391 CODING WAR |
ユーザー | tossy |
提出日時 | 2016-07-08 23:58:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,348 bytes |
コンパイル時間 | 734 ms |
コンパイル使用メモリ | 91,880 KB |
実行使用メモリ | 17,024 KB |
最終ジャッジ日時 | 2024-10-13 07:38:38 |
合計ジャッジ時間 | 4,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 53 ms
5,248 KB |
testcase_08 | AC | 7 ms
5,248 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <cstdio> #include <cstring> #include <string> #include <cmath> #include <cassert> #include <iostream> #include <algorithm> #include <stack> #include <queue> #include <vector> #include <set> #include <map> #include <bitset> #include <fstream> using namespace std; #define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define rep(i,n) repl(i,0,n) #define mp(a,b) make_pair(a,b) #define pb(a) push_back(a) #define all(x) (x).begin(),(x).end() #define dbg(x) cout<<#x"="<<x<<endl typedef long long ll; #define INF 1000000000 #define MOD 1000000007 long dp[100000]; // x^n mod long mod_pow(long x, long n, long mod){ long res=1; while(n>0){ if(n&1) res=res*x%mod; x=x*x%mod; n>>=1; } return res; } long comb(long n, long m){ long res =1; for(long i=m+1;i<=n;i++) res = res*i%MOD; long tmp=1; for(long i=1; i<=n-m; i++) tmp = tmp*i%MOD; // (n-m)! res = res*mod_pow(tmp, MOD-2, MOD)%MOD; // (n-m)!^(-1) return res; } long calc(long n, long m){ if(dp[m]!=-1) return dp[m]; long res = mod_pow(m,n,MOD); for(long i=m-1; i>=1; i--){ res = (res - comb(m,i)*calc(n, i) + MOD)%MOD; } return dp[m] = res; } int main(){ long n,m; cin>>n>>m; if(m>n){ cout<<0<<endl; return 0; } fill(dp, dp+m+1, -1); dp[1]=1; cout<<calc(n,m)<<endl; return 0; }