結果
問題 | No.801 エレベーター |
ユーザー |
![]() |
提出日時 | 2019-03-17 21:40:41 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 190 ms / 2,000 ms |
コード長 | 1,723 bytes |
コンパイル時間 | 919 ms |
コンパイル使用メモリ | 100,956 KB |
実行使用メモリ | 74,112 KB |
最終ジャッジ日時 | 2024-07-07 21:19:12 |
合計ジャッジ時間 | 5,310 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
#include <cstdio>#include <cstring>#include <iostream>#include <string>#include <cmath>#include <bitset>#include <vector>#include <map>#include <set>#include <queue>#include <deque>#include <algorithm>#include <complex>#include <unordered_map>#include <unordered_set>#include <random>#include <cassert>#include <utility>#include <functional>using namespace std;typedef long long int ll;typedef pair<int, int> P;const ll MOD=1e9+7;ll powmod(ll a, ll k){ll ap=a, ans=1;while(k){if(k&1){ans*=ap;ans%=MOD;}ap=ap*ap;ap%=MOD;k>>=1;}return ans;}ll inv(ll a){return powmod(a, MOD-2);}ll f[1000001], invf[1000001];void fac(int n){f[0]=1;for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD;invf[n]=inv(f[n]);for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD;}ll comb(int x, int y){if(x<y) return 0;return f[x]*invf[y]%MOD*invf[x-y]%MOD;}int main(){int n, m, k; cin>>n>>m>>k;ll dp[3001][3001]={};ll s[3001];dp[0][1]=1;fill(s+1, s+n+1, 1); s[0]=0;vector<int> r[3001], l[3001];for(int i=0; i<m; i++){int l1, r1; cin>>l1>>r1;r[l1].push_back(r1);l[r1].push_back(l1);}for(int i=1; i<=k; i++){ll sum=0;for(int j=1; j<=n; j++){for(auto r1:r[j]){sum+=(s[r1]-s[j-1]+MOD); sum%=MOD;}dp[i][j]=sum;for(auto l1:l[j]){sum+=(s[l1-1]-s[j]+MOD); sum%=MOD;}}s[0]=0;for(int j=1; j<=n; j++){s[j]=(s[j-1]+dp[i][j])%MOD;}}cout<<dp[k][n]<<endl;return 0;}