Submission #1370014


Source Code Expand

#include <iostream>
#include <vector>

int main() {
  unsigned N;
  std::cin >> N;
  std::vector<std::pair<unsigned long long, unsigned>> a(N);
  for (unsigned i = 0; i < N; ++i) {
    std::cin >> a[i].first;
    a[i].second = i + 1;
  }
  //後ろから見る
  std::sort(a.begin(), a.end(),
            [](std::pair<unsigned long long, unsigned> i,
               std::pair<unsigned long long, unsigned> j) -> bool {
              return i.first < j.first;
            });
  std::vector<unsigned long long> ans(N + 1, 0);
  unsigned long long multi = 1;
  while (!a.empty()) {
    while (a.size() > 1 && (a.end() - 1)->first == (a.end() - 2)->first) {
      (a.end() - 2)->second = std::min((a.end() - 1)->second, (a.end() - 2)->second);
      ++multi;
      a.pop_back();
    }
    if (a.size() > 1) {
      ans[(a.end() - 1)->second] += multi * ((a.end() - 1)->first - (a.end() - 2)->first);
      (a.end() - 2)->second = std::min((a.end() - 1)->second, (a.end() - 2)->second);
      ++multi;
      a.pop_back();
    } else {
      ans[a.front().second] += multi * a.front().first;
      a.pop_back();
    }
  }
  for (unsigned i = 1; i <= N; ++i) {
    std::cout << ans[i] << std::endl;
  }
  return 0;
}

Submission Info

Submission Time
Task E - Frequency
User ytsmiling
Language C++14 (Clang 3.8.0)
Score 700
Code Size 1248 Byte
Status AC
Exec Time 315 ms
Memory 3456 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 700 / 700
Status
AC × 2
AC × 39
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
All 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 8 ms 888 KB
00_example_02.txt AC 1 ms 256 KB
01.txt AC 1 ms 256 KB
02.txt AC 19 ms 384 KB
03.txt AC 2 ms 256 KB
04.txt AC 3 ms 256 KB
05.txt AC 1 ms 256 KB
06.txt AC 1 ms 256 KB
07.txt AC 1 ms 256 KB
08.txt AC 2 ms 256 KB
09.txt AC 26 ms 512 KB
10.txt AC 1 ms 256 KB
11.txt AC 285 ms 2816 KB
12.txt AC 287 ms 2816 KB
13.txt AC 288 ms 2816 KB
14.txt AC 280 ms 2816 KB
15.txt AC 285 ms 2816 KB
16.txt AC 314 ms 2816 KB
17.txt AC 307 ms 3200 KB
18.txt AC 315 ms 2816 KB
19.txt AC 248 ms 2816 KB
20.txt AC 277 ms 2816 KB
21.txt AC 1 ms 256 KB
22.txt AC 1 ms 256 KB
23.txt AC 1 ms 256 KB
24.txt AC 19 ms 384 KB
25.txt AC 2 ms 256 KB
26.txt AC 3 ms 256 KB
27.txt AC 1 ms 256 KB
28.txt AC 304 ms 3328 KB
29.txt AC 300 ms 3456 KB
30.txt AC 299 ms 3456 KB
31.txt AC 302 ms 3328 KB
32.txt AC 299 ms 3328 KB
33.txt AC 294 ms 2816 KB
34.txt AC 296 ms 2816 KB
35.txt AC 296 ms 2816 KB
36.txt AC 294 ms 2816 KB
37.txt AC 293 ms 2816 KB