結果

問題 No.801 エレベーター
ユーザー ShibuyapShibuyap
提出日時 2019-10-29 15:06:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 1,300 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 167,612 KB
実行使用メモリ 74,012 KB
最終ジャッジ日時 2024-09-14 21:29:53
合計ジャッジ時間 8,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 7 ms
6,948 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 363 ms
73,920 KB
testcase_14 AC 362 ms
73,980 KB
testcase_15 AC 363 ms
73,576 KB
testcase_16 AC 358 ms
73,624 KB
testcase_17 AC 359 ms
73,888 KB
testcase_18 AC 360 ms
73,776 KB
testcase_19 AC 370 ms
73,856 KB
testcase_20 AC 363 ms
73,840 KB
testcase_21 AC 362 ms
73,868 KB
testcase_22 AC 359 ms
74,012 KB
testcase_23 AC 347 ms
73,788 KB
testcase_24 AC 348 ms
73,856 KB
testcase_25 AC 349 ms
73,872 KB
testcase_26 AC 346 ms
73,804 KB
testcase_27 AC 347 ms
73,696 KB
testcase_28 AC 219 ms
74,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}

const int MAX_N = 3005;
ll bit[MAX_N];
int n; // 1-index
const ll MOD = 1e9+7;

void adds(int a, ll w){
    for(int x = a; x <= n; x += x & -x) bit[x] += w;
}
ll sums(int a){ 
    ll ret = 0;
    for(int x = a; x > 0; x -= x & -x) ret += bit[x];  
    return ret;
}

ll dp[MAX_N][MAX_N];

int main() {
    int m, k;
    cin >> n >> m >> k;
    int l[m], r[m];
    rep(i,m)cin >> l[i] >> r[i];

    dp[0][1] = 1;

    srep(i,1,k+1){
        rep(j,MAX_N)bit[j] = 0;
        ll sum[MAX_N] = {};
        srep(j,1,MAX_N){
            sum[j] = sum[j-1] + dp[i-1][j];
        }
        rep(j,m){
            ll wa = sum[r[j]] - sum[l[j] - 1];
            wa %= MOD;
            adds(l[j], wa);
            adds(r[j]+1, -wa);
        }
        srep(j,1,n+1){
            dp[i][j] = sums(j);
            dp[i][j] %= MOD;
        }
        /*
        srep(j,1,n+1){
            cout << sums(j) << ' ';
        }
        cout << endl;
        */
    }

    dp[k][n] %= MOD;
    cout << dp[k][n] << endl;
    return 0;
}
 
 
0