Submission #4033524


Source Code Expand

#include <iostream>
#include <cmath>
#include <vector>
#include <map>
#include <string>
#include <algorithm>
#include <numeric>
#include <queue>

typedef long long ll;
const ll INF = 1e18 + 1;
const ll MOD = 1e9 + 7;

template <typename T> void print(T a) {std::cout << a << std::endl;}
template <typename T> void print(std::string s, T a) {std::cout << s << " " << a << std::endl;}
template<typename Iterator> void print(Iterator begin, Iterator end)
{
  for (Iterator it = begin; it != end; it++) {
    std::cout << "[" << std::distance(begin, it) << "] " << *it << " ";
    if (std::distance(begin, it) % 50 == 49) { std::cout << std::endl; }
  }
  std::cout << std::endl;
}

int main(int argc, char* argv[])
{
  std::cin.tie(nullptr);
  std::ios::sync_with_stdio(false);

  ll N;
  std::cin >> N;
  std::vector< ll > va(N, 0LL);
  std::vector< ll > vcnt((ll)1e5+1, 0LL);
  std::map< ll, ll > mm;
  for (ll i = 0; i < N; i++) {
    std::cin >> va[i];
    vcnt[va[i]]++;
  }

  ll cnt = 0;
  for (ll i = 0; i <= 1e5; i++) {
    if (vcnt[i] > 0) {
      mm[i] = cnt;
      cnt++;
    }
  }

  for (ll i = 0; i < N; i++) {
    print(mm[va[i]]);
  }

  return 0;
}

Submission Info

Submission Time
Task C - 座圧
User betweens
Language C++14 (GCC 5.4.1)
Score 30
Code Size 1217 Byte
Status RE
Exec Time 208 ms
Memory 6144 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 0 / 30 30 / 30 0 / 40
Status
AC × 1
RE × 9
AC × 11
AC × 11
RE × 19
Set Name Test Cases
Testset1 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt
Testset2 000.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt
Case Name Status Exec Time Memory
000.txt AC 2 ms 1024 KB
001.txt RE 100 ms 1024 KB
002.txt RE 100 ms 1024 KB
003.txt RE 100 ms 1024 KB
004.txt RE 101 ms 1024 KB
005.txt RE 100 ms 1024 KB
006.txt RE 100 ms 1024 KB
007.txt RE 100 ms 1024 KB
008.txt RE 99 ms 1024 KB
009.txt RE 100 ms 1024 KB
010.txt AC 197 ms 4992 KB
011.txt AC 163 ms 2176 KB
012.txt AC 190 ms 4224 KB
013.txt AC 180 ms 2944 KB
014.txt AC 205 ms 6144 KB
015.txt AC 191 ms 4096 KB
016.txt AC 181 ms 2944 KB
017.txt AC 208 ms 6016 KB
018.txt AC 205 ms 5760 KB
019.txt AC 199 ms 5120 KB
020.txt RE 101 ms 1792 KB
021.txt RE 100 ms 1792 KB
022.txt RE 101 ms 1792 KB
023.txt RE 101 ms 1792 KB
024.txt RE 101 ms 1792 KB
025.txt RE 100 ms 1792 KB
026.txt RE 100 ms 1792 KB
027.txt RE 101 ms 1792 KB
028.txt RE 101 ms 1792 KB
029.txt RE 100 ms 1792 KB