# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
775228 | danikoynov | 곤돌라 (IOI14_gondola) | C++14 | 50 ms | 9388 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll maxn = 1e6 + 10;
ll cnt[maxn];
int valid(int n, int inputSeq[])
{
for (ll i = 0; i < n; i ++)
{
ll val = inputSeq[(i + 1) % n];
if (inputSeq[i] == n && val == 1)
continue;
if (val != inputSeq[i] + 1)
{
///cout << i << endl;
///cout << inputSeq[i] << " " << val << endl;
return 0;
}
}
return 1;
}
//----------------------
ll order[maxn], to_go[maxn];
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
ll pivot = 0;
while(pivot < n && gondolaSeq[pivot] > n)
pivot ++;
if (pivot == n)
{
pivot = 0;
for (ll i = 0; i < n; i ++)
order[i] = gondolaSeq[i];
}
else
{
order[gondolaSeq[pivot] - 1] = gondolaSeq[pivot];
for (ll i = pivot + 1; i < n + pivot; i ++)
{
order[(gondolaSeq[pivot] - 1 + (i - pivot)) % n] = gondolaSeq[i % n];
}
}
///for (ll i = 0; i < n; i ++)
///cout << order[i] << " ";
/// cout << endl;
ll mx = 0, pt = 0;
for (ll i = 0; i < n; i ++)
{
if (order[i] > n)
{
if (order[i] > mx)
{
mx = order[i];
pt = i + 1;
}
to_go[order[i]] = i + 1;
}
}
///cout << mx << " " << pt << endl;
ll idx = 0, last_free = pt;
for (ll i = n + 1; i <= mx; i ++)
{
if (to_go[i] != 0)
{
if (to_go[i] == pt)
replacementSeq[idx ++] = last_free;
else
replacementSeq[idx ++] = to_go[i];
}
else
{
replacementSeq[idx ++] = last_free;
last_free = i;
}
}
return max((ll)0, mx - n);
}
//----------------------
const ll mod = 1e9 + 9;
ll power(ll base, ll st)
{
ll ans = 1;
while(st > 0)
{
if (st % 2 == 1)
ans = (ans * base) % mod;
base = (base * base) % mod;
st /= 2;
}
return ans;
}
int countReplacement(int n, int inputSeq[])
{
map < ll, ll > mp;
for (ll i = 0; i < n; i ++)
{
if (mp[inputSeq[i]] != 0)
return 0;
mp[inputSeq[i]] = 1;
}
ll pivot = 0;
while(pivot < n && inputSeq[pivot] > n)
pivot ++;
if (pivot == n)
{
pivot = 0;
for (ll i = 0; i < n; i ++)
order[i] = inputSeq[i];
}
else
{
order[inputSeq[pivot] - 1] = inputSeq[pivot];
for (ll i = pivot + 1; i < n + pivot; i ++)
{
order[(inputSeq[pivot] - 1 + (i - pivot)) % n] = inputSeq[i % n];
}
}
/**for (ll i = 0; i < n; i ++)
cout << order[i] << " ";
cout << endl;*/
ll mx = 0, pt = 0;
vector < ll > db;
for (ll i = 0; i < n; i ++)
{
if (order[i] > n)
{
if (order[i] > mx)
{
mx = order[i];
pt = i + 1;
}
db.push_back(order[i]);
//to_go[order[i]] = i + 1;
}
}
///cout << mx << " " << pt << endl;
ll sp = 0;
for (ll i = 0; i < n; i ++)
if (order[i] > n)
sp ++;
//cout << sp << endl;
ll idx = 0, last_free = pt;
ll ways = 1;
if (sp == n)
ways = n;
sort(db.begin(), db.end());
ll last = n;
for (ll cur : db)
{
ways = (ways * power(sp, cur - last - 1)) % mod;
last = cur;
sp --;
}
/**for (ll i = n + 1; i <= mx; i ++)
{
if (ways == 0)
return 0;
if (to_go[i] != 0)
{
sp --;
//if (to_go[i] == pt)
// replacementSeq[idx ++] = last_free;
//else
/// replacementSeq[idx ++] = to_go[i];
}
else
{
///cout << i << " : " << sp << " " << ways << endl;
ways = (ways * sp) % mod;
///replacementSeq[idx ++] = last_free;
///last_free = i;
}
}*/
return ways;
}
컴파일 시 표준 에러 (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... |