結果
問題 | No.801 エレベーター |
ユーザー | ok |
提出日時 | 2019-03-18 13:01:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 584 ms |
コンパイル使用メモリ | 72,248 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 06:58:20 |
合計ジャッジ時間 | 5,373 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; #define int long long #define rep(i,n) for(int i = 0; i < (n); i++) #define INF ((long long)1e18) #define MOD ((int)1e9+7) #define endl "\n" #define yn(f) ((f)?"Yes":"No") #define YN(f) ((f)?"YES":"NO") #define MAX 3100 int N, M, K; int _floor[2][MAX]; int L[MAX], R[MAX]; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(10); cin>>N>>M>>K; for(int i = 0; i < M; i++){ cin>>L[i]>>R[i]; } _floor[0][1] = 1; for(int i = 1; i <= K; i++){ for(int j = 0; j <= N; j++){ if(j)_floor[i-1][j] += _floor[i-1][j-1]; _floor[i-1][j] %= MOD; } for(int j = 0; j < M; j++){ int sum = (MOD + _floor[i-1][R[j]] - _floor[i-1][L[j]-1])%MOD; _floor[i][R[j]+1] = (MOD+_floor[i][R[j]+1]-sum)%MOD; _floor[i][L[j]] = (MOD+_floor[i][L[j]]+sum)%MOD; } for(int j = 0; j <= N; j++){ if(j)_floor[i][j] += _floor[i][j-1]; _floor[i][j] %= MOD; } } cout<<_floor[K][N]<<endl; return 0; }