結果
問題 | No.266 最終進化を目指せ |
ユーザー | koyopro |
提出日時 | 2015-10-10 14:52:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 696 bytes |
コンパイル時間 | 1,302 ms |
コンパイル使用メモリ | 159,784 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 06:13:52 |
合計ジャッジ時間 | 3,986 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | RE | - |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:13:36: warning: iteration 20 invokes undefined behavior [-Waggressive-loop-optimizations] 13 | REP(i,N+1) REP(j,111) dp[i][j] = 1e9; | ~~~~~~~~~^~~~~ main.cpp:4:33: note: within this loop 4 | #define REP(i, n) for(int i=0; i<(n); i++) | ^ main.cpp:13:16: note: in expansion of macro ‘REP’ 13 | REP(i,N+1) REP(j,111) dp[i][j] = 1e9; | ^~~
ソースコード
#include "bits/stdc++.h" using namespace std; #define REP(i, n) for(int i=0; i<(n); i++) int N,T; int dp[11][20]; // N進化目x覚醒数 -> 必要枚数 signed main() { cin >> N; vector<int> S(N+1); REP(i,N+1) cin >> S[i]; REP(i,N+1) REP(j,111) dp[i][j] = 1e9; dp[0][0] = 1; REP(i,N+1) REP(j,111) { if (j > S[i]) break; // 覚醒数上限有り if (i > 0) { // 進化 dp[i][j] = min(dp[i][j], dp[i-1][j] + 1); } // 強化 REP(k,j) { dp[i][j] = min(dp[i][j], dp[i][j-k-1] + dp[i][k]); } } REP(i,S[N]+1) { cout << dp[N][i] << " "; } cout << endl; return 0; }