# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
926828 | NintsiChkhaidze | 곤돌라 (IOI14_gondola) | C++17 | 35 ms | 6928 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include <bits/stdc++.h>
#define pb push_back
#define s second
#define f first
using namespace std;
int b[200005],c[200005],a[200005];
int valid(int n, int gondolaSeq[]){
map <int,int> mp;
int k = -1;
for (int i=0;i<n;i++){
a[i] = gondolaSeq[i];
if (mp.find(a[i]) != mp.end()) return 0;
mp[a[i]] = 1;
if (a[i] > n) continue;
if (k == -1) k= i;
else if (a[k] > a[i]) k = i;
}
if (k==-1) return 1;
int m = 0;
int st = a[k];
for (int j = k; j < n; j++)
if (a[j] <= n) b[++m] = a[j],c[m] = st + (j - k);
for (int j = 0; j < k; j++)
if (a[j] <= n) b[++m] = a[j],c[m] = st + (n - k) + j;
for (int i = 1; i <= m; i++){
if (b[i] != c[i]) return 0;
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
int k = -1;
for (int i=0;i<n;i++){
a[i] = gondolaSeq[i];
if (a[i] > n) continue;
if (k == -1) k= i;
else if (a[k] > a[i]) k = i;
}
int st;
if (k == -1) k = 0,st = 1;
else st = a[k];
for (int j = k; j < n; j++) b[j] = st + (j - k);
for (int j = 0; j < k; j++) b[j] = st + (n - k) + j;
for (int j = 0; j < n; j++) if (b[j] > n) b[j] -= n;
int x = n + 1,m = -1;
vector <pair <int,int> > vec;
for (int i=0;i<n;i++){
if (gondolaSeq[i] > n) vec.pb({gondolaSeq[i],i});
}
sort(vec.begin(),vec.end());
for (int j=0;j<vec.size();j++){
int final = vec[j].f,i = vec[j].s;
int cur = b[i];
while (cur != final){
replacementSeq[++m] = cur;
cur = x++;
}
}
return m + 1;
}
//----------------------
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... |