답안 #831842

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
831842 2023-08-20T15:58:28 Z Essa2006 사탕 분배 (IOI21_candies) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
#include "candies.h"
using namespace std;
#define ll long long 
#define FF first
#define SS second
#define all(a) a.begin(), a.end()
#define mod (ll)(1000000007)

vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v) {
    int n=c.size(), q=l.size();
    vector<ll>p(n);
    bool all_pos=1;
    for(int j=0;j<q;j++){
        if(v[j]<0)
            all_pos=0;
    }
    if((ll)n*q<=1e8){
        for(int i=0;i<n;i++){
            for(int j=0;j<q;j++){
                if(i>=l[j] && i<=r[j]){
                    p[i]=min((ll)c[i], max((ll)0, (ll)p[i]+v[j]));
                }
            }
        }
        return p;
    }
    if(all_pos){
        for(int j=0;j<q;j++){
            p[l[j]]+=v[j];
            if(r[j]!=n-1)
                p[r[j]+1]-=v[j];
        }
        for(int i=1;i<n;i++){
            p[i]+=p[i-1];
            p[i]=min(p[i], (ll)0);
        }
        return p;
    }
    
}

//int main() {
//    int n;
//    assert(1 == scanf("%d", &n));
//    std::vector<int> c(n);
//    for(int i = 0; i < n; ++i) {
//        assert(scanf("%d", &c[i]) == 1);
//    }
//
//    int q;
//    assert(1 == scanf("%d", &q));
//    std::vector<int> l(q), r(q), v(q);
//    for(int i = 0; i < q; ++i) {
//        assert(scanf("%d %d %d", &l[i], &r[i], &v[i]) == 3);
//    }
//
//    std::vector<int> ans = distribute_candies(c, l, r, v);
//
//    for(int i = 0; i < n; ++i) {
//        if (i > 0) {
//            printf(" ");
//        }
//        printf("%d", ans[i]);
//    }
//    printf("\n");
//    fclose(stdout);
//    return 0;
//}

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:26:16: error: could not convert 'p' from 'vector<long long int>' to 'vector<int>'
   26 |         return p;
      |                ^
      |                |
      |                vector<long long int>
candies.cpp:38:16: error: could not convert 'p' from 'vector<long long int>' to 'vector<int>'
   38 |         return p;
      |                ^
      |                |
      |                vector<long long int>