QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#465246#8768. Arrested Developmentucup-team1400#Compile Error//C++14801b2024-07-06 19:26:292024-07-06 19:26:29

詳細信息

answer.code: In function ‘int main()’:
answer.code:31:10: error: missing template arguments before ‘dp’
   31 |   vector dp(MAX, INF);
      |          ^~
answer.code:32:3: error: ‘dp’ was not declared in this scope
   32 |   dp[0] = 0;
      |   ^~
answer.code:34:13: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
   34 |   for (auto [a, b] : difs) {
      |             ^