답안 #966115

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
966115 2024-04-19T11:58:38 Z AkibAzmain 사탕 분배 (IOI21_candies) C++17
0 / 100
5000 ms 7408 KB
#include "candies.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

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