結果
問題 | No.801 エレベーター |
ユーザー | siman |
提出日時 | 2022-05-27 14:46:48 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,033 bytes |
コンパイル時間 | 1,959 ms |
コンパイル使用メモリ | 142,708 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-20 15:14:44 |
合計ジャッジ時間 | 4,744 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 100 ms
6,940 KB |
testcase_17 | AC | 100 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 94 ms
6,940 KB |
testcase_24 | AC | 95 ms
6,940 KB |
testcase_25 | AC | 95 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 99 ms
6,940 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; const ll MOD = 1000000007; int main() { int N, M, K; cin >> N >> M >> K; vector<int> L(M); vector<int> R(M); for (int i = 0; i < M; ++i) { cin >> L[i] >> R[i]; } ll dp[N + 1]; memset(dp, 0, sizeof(dp)); dp[1] = 1; for (int i = 0; i < K; ++i) { ll RUI[N + 1]; memset(RUI, 0, sizeof(RUI)); for (int j = 1; j <= N; ++j) { RUI[j] = dp[j] + RUI[j - 1]; RUI[j] %= MOD; } ll D[N + 1]; memset(D, 0, sizeof(D)); for (int j = 0; j < M; ++j) { int l = L[j]; int r = R[j]; ll sum = RUI[r] - RUI[l - 1]; D[l] += sum; D[r + 1] -= sum; } ll sum = 0; for (int j = 1; j <= N; ++j) { sum += D[j]; sum %= MOD; dp[j] = sum; } } cout << dp[N] << endl; return 0; }