結果
問題 | No.801 エレベーター |
ユーザー | heno239 |
提出日時 | 2019-03-14 11:19:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,398 bytes |
コンパイル時間 | 1,085 ms |
コンパイル使用メモリ | 113,036 KB |
実行使用メモリ | 10,268 KB |
最終ジャッジ日時 | 2024-06-26 06:14:50 |
合計ジャッジ時間 | 5,720 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,704 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 91 ms
5,376 KB |
testcase_04 | AC | 93 ms
5,376 KB |
testcase_05 | AC | 87 ms
5,376 KB |
testcase_06 | AC | 89 ms
5,376 KB |
testcase_07 | AC | 95 ms
5,376 KB |
testcase_08 | AC | 95 ms
5,376 KB |
testcase_09 | AC | 88 ms
5,376 KB |
testcase_10 | AC | 91 ms
5,376 KB |
testcase_11 | AC | 89 ms
5,376 KB |
testcase_12 | AC | 91 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include<iostream> #include<string> #include<cstdio> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<ciso646> #include<random> #include<map> #include<set> #include<complex> #include<bitset> #include<stack> #include<unordered_map> #include<utility> using namespace std; typedef long long ll; typedef unsigned int ui; const ll mod = 1000000007; typedef long double ld; const ld INF = (ld)10000000000000; typedef pair<int, int> P; #define stop char nyaa;cin>>nyaa; #define rep(i,n) for(int i=0;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define rep1(i,n) for(int i=1;i<=n;i++) #define per1(i,n) for(int i=n;i>=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) typedef complex<ld> Point; const ld eps = 1e-8; const ld pi = acos(-1.0); typedef pair<ld, ld> LDP; typedef pair<ll, ll> LP; ll dp[3000]; ll cop[3001]; int main() { dp[0] = 1; int n, m, k; cin >> n >> m >> k; vector<int> l(m), r(m); rep(i, m) { cin >> l[i] >> r[i]; l[i]--; r[i]--; } rep(i, k) { fill(cop, cop + n, 0); rep(j, n) { rep(i2, m) { if (j < l[i2] || r[i2] < j)continue; (cop[l[i2]] += dp[j]) %= mod; (cop[r[i2] + 1] += mod - dp[j]) %= mod; } } rep(j, n) { (cop[j + 1] += cop[j]) %= mod; } rep(j, n)dp[j] = cop[j]; } cout << dp[n - 1] << endl; //stop return 0; }