# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
250683 | hhh07 | 곤돌라 (IOI14_gondola) | C++14 | 25 ms | 2932 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
#include <utility>
#include <set>
#include <cmath>
#include <climits>
#include <cstring>
#include <stdio.h>
#include <assert.h>
#include "gondola.h"
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef pair<ll, ll> ii;
ll MOD = 1e9 + 9;
ll stepen(ll x, int st){
ll res = 1;
while(st > 0){
if (st&1)
res = (1LL)*(res*x)%MOD;
x = (1LL)*(x*x)%MOD;
st /= 2;
}
return res;
}
int valid(int n, int x[]){
int j = -1;
for (int i = 0; i < n; i++){
if (x[i] > n)
continue;
j = i;
break;
}
vector<bool> visited(250001, 0);
for (int i = 0; i < n; i++){
if (visited[x[i]])
return false;
visited[x[i]] = true;
if (j > i){
int moze = x[j] - (j - i);
if (moze < 1)
moze += n;
if (x[i] <= n && moze != x[i]){
return false;
}
}
else{
int moze = x[j] + (i - j);
if (moze > n)
moze -= n;
if (x[i] <= n && moze != x[i]){
return false;
}
}
}
return true;
}
int replacement(int n, int x[], int y[]){
vector<ii> t;
int j = 0;
for (int i = 0; i < n; i++){
if (x[i] > n)
t.push_back(make_pair(x[i], i));
else
j = i;
}
sort(t.begin(), t.end());
if (t.size() == n)
x[0] = 1;
for (int i = 0; i < n; i++){
if (j > i){
int moze = x[j] - (j - i);
if (moze < 1)
moze += n;
x[i] = moze;
}
else{
int moze = x[j] + (i - j);
if (moze > n)
moze -= n;
x[i] = moze;
}
}
vi res;
int k = n;
for (int i = 0; i < t.size(); i++){
int curr = t[i].first, idx = t[i].second;
res.push_back(x[idx]);
for (int j = k + 1; j < curr; j++)
res.push_back(j);
k = curr;
}
for (int i = 0; i < res.size(); i++)
y[i] = res[i];
return res.size();
}
int countReplacement(int n, int x[]){
bool k = valid(n, x);
if (!k)
return 0;
vi t;
for (int i = 0; i < n; i++)
if (x[i] > n)
t.push_back(x[i]);
sort(t.begin(), t.end());
ll res = 1;
int prev = n;
for (int i = 0; i < t.size(); i++){
res *= stepen(t.size() - i, t[i] - prev - 1);
res = res%MOD;
prev = t[i];
}
if (t.size() == n){
res *= n;
res = res%MOD;
}
return res;
}
컴파일 시 표준 에러 (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... |