# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
787912 | Minindu206 | 곤돌라 (IOI14_gondola) | C++14 | 34 ms | 4620 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include <bits/stdc++.h>
using namespace std;
int valid(int n, int inputSeq[])
{
int ind = -1;
map<int, int> mp;
for (int i = 0; i < n; i++)
{
if (mp[inputSeq[i]] == 1)
return 0;
if (inputSeq[i] <= n)
ind = i;
mp[inputSeq[i]] = 1;
}
if (ind == -1)
return 1;
for (int i = 0; i < n; i++)
{
if (inputSeq[i] > n)
continue;
if (((inputSeq[ind] - inputSeq[i] + n) % n) != ((ind - i + n) % n))
return 0;
}
return 1;
}
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
int ind = -1, mx = 0, l;
map<int, int> mp;
for (int i = 0; i < n; i++)
{
if (gondolaSeq[i] <= n)
ind = i;
mx = max(gondolaSeq[i], mx);
}
l = mx - n;
vector<pair<int, int>> reps;
if (ind == -1)
{
for (int i = 1; i < n + 1; i++)
reps.push_back({gondolaSeq[i - 1], i});
}
else
{
for (int i = 0; i < n; i++)
{
if (gondolaSeq[i] <= n)
continue;
int dis = 0;
if(i > ind)
dis = i - ind;
else
dis = n - ind + i;
int val = gondolaSeq[ind] + dis;
if(val > n)
val = val % n;
reps.push_back({gondolaSeq[i], val});
}
}
sort(reps.begin(), reps.begin());
int i = 0, j = n + 1, k = 0;
for(int i=0;i<k;i++)
{
pair<int, int> cur = reps[k];
replacementSeq[i] = cur.second;
i++;
while(j < cur.first)
{
replacementSeq[i] = j;
j++;
i++;
}
j++;
}
return i;
}
int countReplacement(int n, int inputSeq[])
{
return -3;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |