Submission #1177704


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
#define Nmax 100000

int main(){
    int n,a[Nmax];
    cin>>n;
    priority_queue<int, vector<int>, greater<int> > q;
    int *t=new int[Nmax];
    for(int i=0;i<n;i++){
        cin>>a[i];
        q.push(a[i]);
    }
    t[0]=q.top();
    int count=1;
    while(!q.empty()){
        if(q.top()!=t[count-1]){
            t[count]=q.top();
            count++;
        }
        q.pop();
    }
    for(int i=0;i<n;i++){
        int j=0;
        while(a[i]!=t[j]&&j<Nmax)j++;
        a[i]=j;
    }
    for(int i=0;i<n;i++){
        cout<<a[i]<<endl;
    }

}

Submission Info

Submission Time
Task C - 座圧
User kilattoeruru
Language C++14 (GCC 5.4.1)
Score 30
Code Size 632 Byte
Status TLE
Exec Time 2103 ms
Memory 1912 KB

Judge Result

Set Name Testset1 Testset2 All
Score / Max Score 30 / 30 0 / 30 0 / 40
Status
AC × 10
AC × 9
TLE × 2
AC × 22
TLE × 8
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 1521 ms 1912 KB
011.txt AC 206 ms 1528 KB
012.txt AC 1138 ms 1784 KB
013.txt AC 506 ms 1656 KB
014.txt TLE 2103 ms 1912 KB
015.txt AC 1052 ms 1784 KB
016.txt AC 542 ms 1656 KB
017.txt TLE 2036 ms 1912 KB
018.txt AC 1931 ms 1912 KB
019.txt AC 1631 ms 1912 KB
020.txt TLE 2103 ms 1528 KB
021.txt TLE 2103 ms 1656 KB
022.txt AC 612 ms 1656 KB
023.txt TLE 2103 ms 1528 KB
024.txt TLE 2103 ms 1528 KB
025.txt AC 379 ms 1656 KB
026.txt AC 886 ms 1784 KB
027.txt TLE 2103 ms 1400 KB
028.txt AC 819 ms 1784 KB
029.txt TLE 2103 ms 1528 KB