結果
問題 | No.801 エレベーター |
ユーザー | olphe |
提出日時 | 2019-03-17 22:56:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,222 bytes |
コンパイル時間 | 1,145 ms |
コンパイル使用メモリ | 118,148 KB |
実行使用メモリ | 45,216 KB |
最終ジャッジ日時 | 2024-07-08 01:29:59 |
合計ジャッジ時間 | 6,045 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 111 ms
5,376 KB |
testcase_04 | AC | 110 ms
5,376 KB |
testcase_05 | AC | 107 ms
5,376 KB |
testcase_06 | AC | 114 ms
5,376 KB |
testcase_07 | AC | 114 ms
5,376 KB |
testcase_08 | AC | 128 ms
5,376 KB |
testcase_09 | AC | 112 ms
5,376 KB |
testcase_10 | AC | 109 ms
5,376 KB |
testcase_11 | AC | 113 ms
5,376 KB |
testcase_12 | AC | 112 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include "iostream" #include "climits" #include "list" #include "queue" #include "stack" #include "set" #include "functional" #include "algorithm" #include "string" #include "map" #include "unordered_map" #include "unordered_set" #include "iomanip" #include "cmath" #include "random" #include "bitset" #include "cstdio" #include "numeric" #include "cassert" using namespace std; const long long int MOD = 1000000007; //const int MOD = 998244353; //long long int N, M, K, H, W, L, R; int N, M, K, H, W, L, R; void Solve(vector<vector<int>>&box, int num, vector<int>&st) { //auto by = box; //bool flag = true; //for (int i = 0; i < 12; i++) { // if ((num >> i) & 1) { // if (flag) { // by = box; // } // else { // auto bag = by; // for (int j = 0; j < N; j++) { // for (int k = 0; k < N; k++) { // by[j][k] = 0; // for (int l = 0; l < N; l++) { // by[j][k] = ((long long int)bag[l][k] * box[j][l] + by[j][k]) % MOD; // } // } // } // } // } // auto bag = box; // for (int j = 0; j < N; j++) { // for (int k = 0; k < N; k++) { // box[j][k] = 0; // for (int l = 0; l < N; l++) { // box[j][k] = ((long long int)bag[j][l] * bag[l][k] + box[j][k]) % MOD; // } // } // } //} //auto bag = st; //for (int j = 0; j < N; j++) { // st[j] = 0; // for (int k = 0; k < N; k++) { // st[j] = ((long long int)bag[k] * by[j][k] + st[j]) % MOD; // } //} for (int i = 0; i < K; i++) { auto bag = st; for (int j = 0; j < N; j++) { st[j] = 0; for (int k = 0; k < N; k++) { st[j] = ((long long int)bag[k] * box[j][k] + st[j]) % MOD; } } } } int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> N >> M >> K; vector<pair<int, int>>v(M); for (auto &i : v) { cin >> i.first >> i.second; i.first--; i.second--; } vector<int>st(N); st[0] = 1; vector<vector<int>>box(N, vector<int>(N)); for (int i = 0; i < N; i++) { for (auto j : v) { if (j.first > i || j.second < i)continue; box[i][j.first]++; if (j.second + 1 != N)box[i][j.second+1]--; } } for (int i = 0; i < N; i++) { for (int j = 1; j < N; j++) { box[i][j] += box[i][j - 1]; } } Solve(box, K, st); cout << st.back() << endl; return 0; }