Submission #500229

#TimeUsernameProblemLanguageResultExecution timeMemory
500229sazid_alamDistributing Candies (IOI21_candies)C++17
Compilation error
0 ms0 KiB
#include "candies.h" #include <bits/stdc++.h> using namespace std; typedef long long int int; vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v) { int n = c.size(); vector<int> s(n, 0) sum(n + 1, 0); for(int i = 0; i < (int)v.size(); i++){ for(int j = l[i]; j <= r[i]; j++){ if(v[j] > 0) s[j] = min(c[j], s[j] + v[j]); else s[j] = max(0, s[j] + v[j]); } } return s; }

Compilation message (stderr)

candies.cpp:5:19: error: multiple types in one declaration
    5 | typedef long long int int;
      |                   ^~~
candies.cpp:5:23: error: declaration does not declare anything [-fpermissive]
    5 | typedef long long int int;
      |                       ^~~
candies.cpp: In function 'std::vector<int> distribute_candies(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
candies.cpp:10:25: error: expected ',' or ';' before 'sum'
   10 |     vector<int> s(n, 0) sum(n + 1, 0);
      |                         ^~~