답안 #1007792

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1007792 2024-06-25T13:27:08 Z jer033 사탕 분배 (IOI21_candies) C++17
0 / 100
5000 ms 12260 KB
#include "candies.h"

#include <vector>
#include <bits/stdc++.h>
using namespace std;

int bound(int a, int b)
{
    if (a<0)
        return 0;
    if (a>b)
        return b;
    return a;
}


std::vector<int> distribute_candies(std::vector<int> c, std::vector<int> l,
                                    std::vector<int> r, std::vector<int> v) {
    int n = c.size();
    std::vector<int> s(n, 0);
    int q = v.size();
    for (int i=0; i<q; i++)
    {
        for (int j=l[i]; j<=r[i]; j++)
        {
            s[j] = bound(s[j]+v[j], c[j]);
        }
    }
    return s;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5020 ms 12260 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -