結果

問題 No.801 エレベーター
ユーザー AquariusAquarius
提出日時 2019-03-20 14:24:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 168,228 KB
実行使用メモリ 73,928 KB
最終ジャッジ日時 2024-09-19 00:28:11
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 7 ms
6,528 KB
testcase_04 AC 6 ms
6,528 KB
testcase_05 AC 7 ms
6,400 KB
testcase_06 AC 7 ms
6,656 KB
testcase_07 AC 7 ms
6,528 KB
testcase_08 AC 7 ms
6,656 KB
testcase_09 AC 6 ms
6,528 KB
testcase_10 AC 7 ms
6,400 KB
testcase_11 AC 6 ms
6,656 KB
testcase_12 AC 7 ms
6,656 KB
testcase_13 AC 175 ms
73,856 KB
testcase_14 AC 176 ms
73,928 KB
testcase_15 AC 212 ms
73,600 KB
testcase_16 AC 244 ms
73,704 KB
testcase_17 AC 175 ms
73,792 KB
testcase_18 AC 175 ms
73,728 KB
testcase_19 AC 176 ms
73,600 KB
testcase_20 AC 176 ms
73,728 KB
testcase_21 AC 177 ms
73,728 KB
testcase_22 AC 174 ms
73,728 KB
testcase_23 AC 173 ms
73,788 KB
testcase_24 AC 183 ms
73,856 KB
testcase_25 AC 173 ms
73,856 KB
testcase_26 AC 188 ms
73,728 KB
testcase_27 AC 187 ms
73,728 KB
testcase_28 AC 193 ms
73,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using PP = pair<long, long>;
const int INF = 1e9;
template <class T> T Next() { T t; cin >> t; return t; }

const int mod = 1000000007;
int n, m, k;
int dp[3001][3001];
int dq[3000][3001];

int l[3000];
int r[3000];
int main() {
  cin >> n >> m >> k;
  for (int j = 0; j < m; ++j) {
    cin >> l[j] >> r[j];
    --l[j];
  }
  
  dp[0][0] = 1; 
  for (int q = 0; q < k; ++q) {
    for (int i = 0; i < n; ++i) {
      dq[q][i + 1] = (dq[q][i] + dp[q][i]) % mod;
    }
    
    for (int j = 0; j < m; ++j) {
      int add = (dq[q][r[j]] + mod - dq[q][l[j]]) % mod;
      dp[q + 1][l[j]] = (dp[q + 1][l[j]] + add) % mod;
      dp[q + 1][r[j]] = (dp[q + 1][r[j]] + mod - add) % mod;
    }
    
    for (int i = 0; i < n; ++i) {
      dp[q + 1][i + 1] = (dp[q + 1][i + 1] + dp[q + 1][i]) % mod; 
    }
  }
  
  cout << dp[k][n - 1] << endl;
}
0