Submission #02162
ソースコード
ステータス
項目 |
データ |
問題 |
0238 - ナップザック問題(Easy) |
ユーザー名 |
ei1532
|
投稿日時 |
2015-12-09 18:23:11 |
言語 |
C++11 |
状態 |
Compile Error |
得点 |
0
|
ソースコード長 |
525 Byte |
最大実行時間 |
-
|
最大メモリ使用量 |
|
コンパイルメッセージ
./Main.cpp:1:1: error: ‘include’ does not name a type
include<bits/stdc++.h>
^
./Main.cpp: In function ‘int dfs(int, int)’:
./Main.cpp:12:69: error: ‘max’ was not declared in this scope
memo[i][weight]=max(dfs(i+1,weight),dfs(i+1,weight-wg[i])+v[i]);
^
./Main.cpp: In function ‘int main()’:
./Main.cpp:22:3: error: ‘cin’ was not declared in this scope
cin >> n >> w;
^
./Main.cpp:26:3: error: ‘cout’ was not declared in this scope
cout << dfs(0,w) << endl;
^
./Main.cpp:26:23: error: ‘endl’ was not declared in this scope
cout << dfs(0,w) << endl;
^
セット
テストケース