# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
149000 | 요까할 로뭘 은명팀 (#200) | List of Unique Integers (FXCUP4_unique) | C++17 | 6 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |