Submission #148529

# Submission time Handle Problem Language Result Execution time Memory
148529 2019-09-01T04:36:42 Z Greedy left the chat.(#3618, miguel, claudy, MvC) List of Unique Integers (FXCUP4_unique) C++17
Compilation error
0 ms 0 KB
/*
░░░░░░░░░░░░░░░░▄▄█▀▀██▄▄░░░░░░░
░░░░░░░░░░░░░▄█▀▀░░░░░░░▀█░░░░░░
░░░░░░░░░░░▄▀░░░░░░░░░░░░░█░░░░░
░░░░░░░░░▄█░░░░░░░░░░░░░░░█░░░░░
░░░░░░░██▀░░░░░░░▄▄▄░░▄░█▄█▄░░░░
░░░░░▄▀░░░░░░░░░░████░█▄██░▀▄░░░
░░░░█▀░░░░░░░░▄▄██▀░░█████░██░░░
░░░█▀░░░░░░░░░▀█░▀█▀█▀▀▄██▄█▀░░░
░░░██░░░░░░░░░░█░░█░█░░▀▀▄█▀░░░░
░░░░█░░░░░█░░░▀█░░░░▄░░░░░▄█░░░░
░░░░▀█░░░░███▄░█░░░░░░▄▄▄▄█▀█▄░░
░░░░░▀██░░█▄▀▀██░░░░░░░░▄▄█░░▀▄░
░░░░░░▀▀█▄░▀▄▄░▄░░░░░░░███▀░░▄██
░░░░░░░░░▀▀▀███▀█▄░░░░░█▀░▀░░░▀█
░░░░░░░░░░░░▄▀░░░▀█▄░░░░░▄▄░░▄█▀
░░░▄▄▄▀▀▀▀▀█▀░░░░░█▄▀▄▄▄▄▄▄█▀▀░░
░▄█░░░▄██▀░░░░░░░░░█▄░░░░░░░░░░░
█▀▀░▄█░░░░░░░░░░░░░░▀▀█▄░░░░░░░░
█░░░█░░░░░░░░░░░░░░░░░░█▄░░░░░░░
*/
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define dbg(x) cout << #x << '=' << x << '\n';
#define ll long long
#define x first
#define y second
#define pi pair <int, int>
#define vi vector <int>
#define L nod<<1
#define R ((nod<<1)|1)
#define mp make_pair
const ll mod = 1000000007;
const ll nmax=1000003;

vi PickUnique(int n){
    vi b(n, 0);
    int cnt=UniqueCount(0, n-1), cur=0;
    for(int i=0; i<n-1; i++){
        int xd1, xd2;
        if(i>0) xd1=UniqueCount(0, i-1);
        else xd1=0;
        xd2=UniqueCount(i+1, n-1);
        if(xd1+1+xd2==cnt){
            cur++;
            b[i]=1;
        }
    }
    if(cur<cnt) b[n-1]=1;
    return b;
}


/*int32_t main(){
    ios_base :: sync_with_stdio(0); cin.tie(0); cout.tie(0);
    mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
}*/

Compilation message

unique.cpp: In function 'std::vector<int> PickUnique(int)':
unique.cpp:39:13: error: 'UniqueCount' was not declared in this scope
     int cnt=UniqueCount(0, n-1), cur=0;
             ^~~~~~~~~~~
unique.cpp:46:13: error: 'cur' was not declared in this scope
             cur++;
             ^~~
unique.cpp:50:8: error: 'cur' was not declared in this scope
     if(cur<cnt) b[n-1]=1;
        ^~~