結果
問題 | No.1011 Infinite Stairs |
ユーザー | sima.tetteke |
提出日時 | 2020-03-21 04:57:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,737 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 173,136 KB |
実行使用メモリ | 483,328 KB |
最終ジャッジ日時 | 2024-07-17 11:57:44 |
合計ジャッジ時間 | 12,243 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 333 ms
483,200 KB |
testcase_01 | AC | 336 ms
483,200 KB |
testcase_02 | AC | 337 ms
483,200 KB |
testcase_03 | WA | - |
testcase_04 | AC | 384 ms
483,200 KB |
testcase_05 | AC | 335 ms
483,200 KB |
testcase_06 | AC | 334 ms
483,200 KB |
testcase_07 | AC | 338 ms
483,200 KB |
testcase_08 | AC | 335 ms
483,328 KB |
testcase_09 | AC | 333 ms
483,200 KB |
testcase_10 | AC | 339 ms
483,200 KB |
testcase_11 | AC | 382 ms
483,200 KB |
testcase_12 | AC | 337 ms
483,200 KB |
testcase_13 | AC | 363 ms
483,200 KB |
testcase_14 | AC | 333 ms
483,200 KB |
testcase_15 | AC | 349 ms
483,200 KB |
testcase_16 | AC | 415 ms
483,200 KB |
testcase_17 | AC | 353 ms
483,200 KB |
testcase_18 | AC | 349 ms
483,200 KB |
testcase_19 | AC | 332 ms
483,200 KB |
testcase_20 | AC | 335 ms
483,200 KB |
testcase_21 | AC | 356 ms
483,200 KB |
testcase_22 | AC | 409 ms
483,200 KB |
testcase_23 | AC | 346 ms
483,200 KB |
testcase_24 | AC | 336 ms
483,200 KB |
testcase_25 | AC | 360 ms
483,072 KB |
testcase_26 | AC | 346 ms
483,200 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:25:17: warning: 't_e' may be used uninitialized [-Wmaybe-uninitialized] 25 | ll t_s, t_e; | ^~~ main.cpp:25:12: warning: 't_s' may be used uninitialized [-Wmaybe-uninitialized] 25 | ll t_s, t_e; | ^~~
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long int ll; typedef pair<ll, ll > pi; typedef pair<pair<ll, ll >, ll > pii; vector<ll > vec; vector<vector<ll > > vec2; ll MOD = 1000000007; ll INF = 1145141919454519; int main(){ ll N, d, K; cin >> N >> d >> K; //Nと段数 vector<vector<ll > > dp(319, vector<ll >(191919, 0)); dp[0][0] = 1; ll s = 0; ll e = 1; for(ll i = 0; i < N; i++){ //5 //cout << i << endl; ll t_s, t_e; for(ll j = s; j < e; j++){ for(ll h = 1; h <= d; h++){ //cout << "yes" << endl; if(j + h + (N-i-1) * d < K) continue; else{ dp[i+1][j+h] += dp[i][j]; if(j == s) t_s = j + h; break; } } if(j+1+d > K) continue; dp[i+1][j+1+d] += -dp[i][j]; t_e = j + 1 + d; //cout << t_e << " "; } //cout << endl; //累積和 // for(ll i = 0; i <= N; i++){ // for(ll j = 0; j <= K; j++){ // cout << dp[i][j] << " "; // } // cout << endl; // } // cout << endl; s = t_s; e = t_e; //cout << s << " " << e << endl; for(ll j = s; j <= e; j++){ dp[i+1][j] += dp[i+1][j-1]; dp[i+1][j] %= MOD; } //cout << endl; } // for(ll i = 0; i <= N; i++){ // for(ll j = 0; j <= K; j++){ // cout << dp[i][j] << " "; // } // cout << endl; // } if(dp[N][K] < 0){ dp[N][K] += MOD; } cout << dp[N][K] << endl; }