結果

問題 No.801 エレベーター
ユーザー どららどらら
提出日時 2019-03-17 22:05:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 1,643 ms
コンパイル使用メモリ 173,304 KB
実行使用メモリ 74,228 KB
最終ジャッジ日時 2024-07-07 23:08:56
合計ジャッジ時間 3,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 5 ms
10,772 KB
testcase_04 AC 5 ms
11,168 KB
testcase_05 AC 5 ms
10,812 KB
testcase_06 AC 4 ms
11,164 KB
testcase_07 AC 5 ms
11,404 KB
testcase_08 AC 5 ms
10,956 KB
testcase_09 AC 5 ms
12,044 KB
testcase_10 AC 5 ms
10,760 KB
testcase_11 AC 5 ms
10,464 KB
testcase_12 AC 5 ms
11,620 KB
testcase_13 AC 59 ms
74,048 KB
testcase_14 AC 57 ms
74,024 KB
testcase_15 AC 56 ms
73,728 KB
testcase_16 AC 55 ms
73,920 KB
testcase_17 AC 56 ms
74,064 KB
testcase_18 AC 56 ms
74,104 KB
testcase_19 AC 56 ms
74,228 KB
testcase_20 AC 58 ms
73,916 KB
testcase_21 AC 59 ms
73,956 KB
testcase_22 AC 57 ms
74,148 KB
testcase_23 AC 55 ms
73,944 KB
testcase_24 AC 54 ms
73,936 KB
testcase_25 AC 54 ms
73,924 KB
testcase_26 AC 56 ms
73,820 KB
testcase_27 AC 57 ms
73,908 KB
testcase_28 AC 54 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

const ll MOD = 1000000007LL;
ll dp[3005][3005];
ll sum[3005];
ll nxt[3005];

int main(){
  int N, M, K;
  cin >> N >> M >> K;
  vector<vector<int>> v;
  rep(i,M){
    int l, r;
    cin >> l >> r;
    v.push_back({l,r});
  }

  dp[0][1] = 1;
  rep(i,K){
    sum[0] = 0;
    REP(j,1,3005) sum[j] = sum[j-1] + dp[i][j];
    rep(j,3005) nxt[j] = 0;
    rep(j,v.size()){
      ll s = sum[v[j][1]] - sum[v[j][0]-1];
      nxt[v[j][0]] += s;
      nxt[v[j][1]+1] -= s;
    }
    ll base = 0;
    rep(j,3005){
      base += nxt[j];
      dp[i+1][j] = base % MOD;
    }
  }

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