답안 #788512

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
788512 2023-07-20T10:05:28 Z alexander707070 사탕 분배 (IOI21_candies) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
#define MAXN 1000007
using namespace std;
 
int n;
vector<int> curr;

vector<int> distribute_candies(vector<int> c,vector<int> l,vector<int> r,vector<int> v){
    n=int(c.size());
    curr.resize(n);

    for(int i=0;i<q;i++){
        for(int f=l[i];f<=r[i];f++){
            curr[f]+=v[i];
            if(curr[f]<0)curr[f]=0;
            if(curr[f]>c[f])curr[f]=c[f];
        }
    }

    return curr;
}

Compilation message

candies.cpp: In function 'std::vector<int> distribute_candies(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
candies.cpp:12:19: error: 'q' was not declared in this scope
   12 |     for(int i=0;i<q;i++){
      |                   ^