結果

問題 No.801 エレベーター
ユーザー ats5515ats5515
提出日時 2019-03-17 23:04:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 929 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 85,228 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-08 01:49:57
合計ジャッジ時間 8,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 6 ms
6,944 KB
testcase_13 AC 453 ms
6,948 KB
testcase_14 WA -
testcase_15 AC 453 ms
6,944 KB
testcase_16 AC 458 ms
6,940 KB
testcase_17 AC 457 ms
6,940 KB
testcase_18 AC 453 ms
6,940 KB
testcase_19 AC 453 ms
6,940 KB
testcase_20 AC 457 ms
6,940 KB
testcase_21 AC 455 ms
6,940 KB
testcase_22 AC 458 ms
6,944 KB
testcase_23 AC 418 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 409 ms
6,940 KB
testcase_28 AC 441 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <string>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <stdio.h>
using namespace std;
#define int long long
int MOD = 1000000007;
signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	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];
	}
	vector<int> dp(N + 2, 0);
	dp[1] = 1;

	for (int i = 0; i < K; i++) {
		for (int j = 1; j <= N + 1; j++) {
			dp[j] = (dp[j] + dp[j - 1]) % MOD;
		}


		vector<int> ndp(N + 2, 0);
		for (int j = 0; j < M; j++) {
			int sum = dp[R[j]] - dp[L[j] - 1];
			ndp[L[j]] = (ndp[L[j]] + sum) % MOD;
			ndp[R[j] + 1] -= sum; 
			if (ndp[R[j] + 1] < 0)ndp[R[j] + 1] += MOD;
		}
		for (int j = 1; j <= N + 1; j++) {
			ndp[j] = (ndp[j] + ndp[j - 1]) % MOD;
		}
		swap(dp, ndp);
	}

	cout << dp[N] << endl;
}
0