Submission #1304115


Source Code Expand

// clang-format off

#include <bits/stdc++.h>

#define int long long int
#define main signed main()
#define bye return 0
#define loop(i, a, n) for (int i = (a); i < (n); i++)
#define rep(i, n) loop(i, 0, n)
#define each(p, v) for (auto p = (v).begin(); p != (v).end(); p++)
#define all(v) (v).begin(), (v).end()
#define prec(n) fixed << setprecision(n)
#define dump(x) cerr << "(L" << __LINE__ << ") " << #x << " = " << (x) << endl
#define clr(x, a) memset(x, a, sizeof(x))

#define stlice(from, to) substr(from, (to) - (from) + 1)
#define odd(n) ((n) % 2)
#define even(n) (!odd(n))

#define INF 1000000000
#define INFLL 1000000000000000000LL
#define MOD 1000000007
#define PI acos(-1)

#define pb push_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define se second
#define vi vector<int>
#define vb vector<bool>
#define vc vector<char>
#define vs vector<string>
#define pii pair<int, int>

using namespace std;

// clang-format on

main {
  int n;
  cin >> n;
  int a[n];
  vi b(n);
  rep(i, n) {
    cin >> a[i];
    b[i] = a[i];
  }
  sort(all(b));
  int c = 0;
  map<int, int> t;
  rep(i, n) if (!t.count(b[i])) t[b[i]] = c++;
  rep(i, n) cout << t[a[i]] << endl;
  bye;
}

Submission Info

Submission Time
Task C - 座圧
User AyaMorisawa
Language C++14 (GCC 5.4.1)
Score 100
Code Size 1252 Byte
Status AC
Exec Time 302 ms
Memory 8576 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 30 / 30 30 / 30 40 / 40
Status
AC × 10
AC × 11
AC × 30
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 1 ms 256 KB
001.txt AC 3 ms 256 KB
002.txt AC 3 ms 256 KB
003.txt AC 3 ms 256 KB
004.txt AC 3 ms 256 KB
005.txt AC 3 ms 256 KB
006.txt AC 3 ms 256 KB
007.txt AC 3 ms 256 KB
008.txt AC 3 ms 256 KB
009.txt AC 3 ms 256 KB
010.txt AC 250 ms 4992 KB
011.txt AC 194 ms 2176 KB
012.txt AC 240 ms 4224 KB
013.txt AC 214 ms 2944 KB
014.txt AC 260 ms 6016 KB
015.txt AC 240 ms 3968 KB
016.txt AC 222 ms 2944 KB
017.txt AC 264 ms 5888 KB
018.txt AC 257 ms 5760 KB
019.txt AC 249 ms 5120 KB
020.txt AC 302 ms 8576 KB
021.txt AC 271 ms 6144 KB
022.txt AC 228 ms 3072 KB
023.txt AC 294 ms 7680 KB
024.txt AC 288 ms 7936 KB
025.txt AC 214 ms 2560 KB
026.txt AC 245 ms 3712 KB
027.txt AC 288 ms 6656 KB
028.txt AC 236 ms 3584 KB
029.txt AC 293 ms 8448 KB