結果

問題 No.801 エレベーター
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-14 00:33:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,014 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 76,960 KB
実行使用メモリ 155,288 KB
最終ジャッジ日時 2024-09-19 13:39:16
合計ジャッジ時間 20,471 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,116 KB
testcase_01 AC 119 ms
41,420 KB
testcase_02 AC 112 ms
41,076 KB
testcase_03 AC 171 ms
44,136 KB
testcase_04 AC 184 ms
44,392 KB
testcase_05 AC 189 ms
44,188 KB
testcase_06 AC 186 ms
44,236 KB
testcase_07 AC 188 ms
44,192 KB
testcase_08 AC 175 ms
44,360 KB
testcase_09 AC 177 ms
44,156 KB
testcase_10 AC 176 ms
44,256 KB
testcase_11 AC 176 ms
43,980 KB
testcase_12 AC 181 ms
44,108 KB
testcase_13 AC 966 ms
155,088 KB
testcase_14 AC 973 ms
155,056 KB
testcase_15 AC 966 ms
154,896 KB
testcase_16 AC 981 ms
155,288 KB
testcase_17 AC 955 ms
153,496 KB
testcase_18 AC 979 ms
153,672 KB
testcase_19 AC 955 ms
153,920 KB
testcase_20 AC 1,002 ms
154,944 KB
testcase_21 AC 1,014 ms
155,008 KB
testcase_22 AC 962 ms
154,720 KB
testcase_23 AC 972 ms
154,808 KB
testcase_24 AC 954 ms
154,440 KB
testcase_25 AC 982 ms
154,916 KB
testcase_26 AC 996 ms
155,096 KB
testcase_27 AC 949 ms
154,680 KB
testcase_28 AC 965 ms
155,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long MOD = (long)Math.pow(10, 9) + 7;
    int n = sc.nextInt();
    int m = sc.nextInt();
    int k = sc.nextInt();
    int[] L = new int[m];
    int[] R = new int[m];
    for(int i = 0; i < m; i++) {
      L[i] = sc.nextInt();
      R[i] = sc.nextInt();
    }
    long[][] dp = new long[k + 1][n + 1];
    dp[0][1] = 1;
    for(int i = 1; i < k + 1; i++) {
      long[] rui = new long[n + 1];
      for(int j = 1; j < n + 1; j++) {
        rui[j] = (rui[j - 1] + dp[i - 1][j]) % MOD;
      }
      long[] imos = new long[n + 1];
      for(int j = 0; j < m; j++) {
        long t = (MOD + rui[R[j]] - rui[L[j] - 1]) % MOD;
        imos[L[j]] = (imos[L[j]] + t) % MOD;
        if(R[j] < n) imos[R[j] + 1] = (MOD + imos[R[j] + 1] - t) % MOD;
      }
      for(int j = 1; j < n + 1; j++) {
        imos[j] = (imos[j - 1] + imos[j]) % MOD;
        dp[i][j] = imos[j];
      }
    }
    System.out.println(dp[k][n]);
  }
}
0