# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
433419 | muhammad_hokimiyon | 곤돌라 (IOI14_gondola) | C++14 | 13 ms | 2380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include <bits/stdc++.h>
using namespace std;
int valid(int n, int inputSeq[])
{
int st = 0;
for(int i = 0; i < n; i++){
if(inputSeq[i] == 1)st = i;
}
vector<int> cnt(250500, 0);
for(int i = 0; i < n; i++){
cnt[inputSeq[i]]++;
}
for(int i = 0; i <= 250500; i++){
if(cnt[i] > 1){
return 0;
}
}
for(int it = 0; it < n - 2; it++){
int p = (it + st) % n;
int nx = (it + 1 + st) % n;
if(inputSeq[p] > n || inputSeq[nx] > n){
continue;
}
if(inputSeq[nx] - inputSeq[p] != 1){
return 0;
}
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
vector<int> a(n + 1, 0);
int cnt = 0;
int mx = 0;
int id1 = 0;
for(int i = 0; i < n; i++){
int x = gondolaSeq[i];
if(x > mx){
id1 = i;
}
mx = max(mx, x);
if(x <= n){
a[((i - x + 1) % n + n) % n]++;
cnt++;
}
}
vector<int> id(250500, -1);
for(int i = 0; i < n; i++){
id[gondolaSeq[i]] = i;
}
bool f = true;
int newn = n + 1;
int l = 0;
for(int i = 0; i < n; i++){
if(a[i] == cnt){
f = false;
vector<int> newid(n, 0);
for(int j = 0; j < n; j++){
newid[(i + j) % n] = j + 1;
}
while(newn <= mx){
if(id[newn] == -1){
replacementSeq[l++] = newid[id1];
newid[id1] = newn++;
}else{
replacementSeq[l++] = newid[id[newn]];
newid[id[newn]] = newn++;
}
}
break;
}
}
assert(f == false);
return l;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
int st = 0;
for(int i = 0; i < n; i++){
if(inputSeq[i] == 1)st = i;
}
map<int, int> cnt;
for(int i = 0; i < n; i++){
cnt[inputSeq[i]]++;
}
for(auto x : cnt){
if(x.second > 1){
return 0;
}
}
for(int it = 0; it < n - 2; it++){
int p = (it + st) % n;
int nx = (it + 1 + st) % n;
if(inputSeq[p] > n || inputSeq[nx] > n){
continue;
}
if(inputSeq[nx] - inputSeq[p] != 1){
return 0;
}
}
return 1;
}
컴파일 시 표준 에러 (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... |