답안 #149000

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
149000 2019-09-01T05:32:04 Z 요까할 로뭘 은명팀(#3558, mario05092929, foja001, earthk) List of Unique Integers (FXCUP4_unique) C++17
0 / 100
6 ms 384 KB
#include "unique.h"
#include <bits/stdc++.h>
using namespace std;
int a[205][205],x;

vector<int> PickUnique(int n)
{
    vector <int> ans;
    for(int i = 0;i < n;i++)
    {
        ans.push_back(1);
        a[0][i] = UniqueCount(0,i);
        a[i][n-1] = UniqueCount(i,n-1);
    }
    int l = 1;
    for(int i = 1;i < n;i++)
    {
        x = a[0][i];
        if(l == x+1) ans[i] = 0;
        if(l == x) ans[i] = 0;
        l = x;
    }
    l = 1;
    for(int i = n-2;i >= 0;i--)
    {
        x = a[i][n-1];
        if(l == x+1) ans[i] = 0;
        if(l == x) ans[i] = 0;
        l = x;
    }
    for(int i : ans) cout << i << " ";
    cout << "\n";
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 384 KB Wrong
2 Halted 0 ms 0 KB -