记录详情

Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:6:2: error: 'cin' was not declared in this scope
  cin>>m>>n;
  ^~~
/in/foo.cc:16:38: error: 'max' was not declared in this scope
     dp[j] = max(dp[j],dp[j-A[i]]+V[i]);
                                      ^
/in/foo.cc:19:24: error: 'max' was not declared in this scope
   maxn = max(maxn,dp[i]);
                        ^
/in/foo.cc:21:2: error: 'cout' was not declared in this scope
  cout<<maxn<<endl;
  ^~~~
/in/foo.cc:21:14: error: 'endl' was not declared in this scope
  cout<<maxn<<endl;
              ^~~~

信息

递交者
类型
递交
题目
完全背包问题
题目数据
下载
语言
C++
递交时间
2019-09-17 20:01:31
评测时间
2019-09-17 20:01:31
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes