| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 749971 | Abrar_Al_Samit | 곤돌라 (IOI14_gondola) | C++17 | 19 ms | 2376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include <bits/stdc++.h>
using namespace std;
const int nax = 1e5 + 3;
const int mod = 1e9 + 9;
int cnt[nax];
int expected[nax];
void get_expected(int n, int inputSeq[]) {
for(int i=0; i<n; ++i) {
expected[i] = 0;
}
int min_at = min_element(inputSeq, inputSeq+n) - inputSeq;
int cur_val = inputSeq[min_at];
int cur_id = min_at;
for(int i=cur_id; ; ++i, ++cur_val) {
if(i==n) i = 0;
if(cur_val>n) cur_val = 1;
if(expected[i]) break;
expected[i] = cur_val;
}
}
int valid(int n, int inputSeq[]) {
for(int i=0; i<n; ++i) {
cnt[inputSeq[i]]++;
if(cnt[inputSeq[i]]>1) {
return 0;
}
}
get_expected(n, inputSeq);
for(int i=0; i<n; ++i) if(inputSeq[i]<=n) {
if(inputSeq[i]!=expected[i]) return 0;
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[]) {
get_expected(n, gondolaSeq);
vector<pair<int,int>>v;
for(int i=0; i<n; ++i) if(gondolaSeq[i]>n) {
v.emplace_back(gondolaSeq[i], expected[i]);
}
sort(v.begin(), v.end());
int l = 0;
int at = 0;
while(at<v.size()) {
int cur_gondola = v[at].second;
while(l+n+1<=v[at].first) {
replacementSeq[l] = cur_gondola;
cur_gondola = l+n+1;
++l;
}
++at;
}
return l;
}
//----------------------
int mul(int x, int y) {
return (x * 1LL * y) % mod;
}
int quickpow(int a, int b) {
int ret = 1;
while(b) {
if(b&1) ret = mul(ret, a);
a = mul(a, a);
b >>= 1;
}
return ret;
}
int countReplacement(int n, int inputSeq[]) {
int mx = 0, gtn = 0;
vector<int>v;
for(int i=0; i<n; ++i) {
mx = max(mx, inputSeq[i]);
if(inputSeq[i]>n) {
++gtn;
v.push_back(inputSeq[i]);
}
}
v.push_back(n);
sort(v.begin(), v.end());
long long ans = 1;
if(gtn<n && !valid(n, inputSeq)) {
return 0;
}
for(int i=1; i<v.size(); ++i) {
int cnt = v[i] - v[i-1] - 1;
int option = gtn - i + 1;
ans *= quickpow(option, cnt);
ans %= mod;
}
return ans;
}
컴파일 시 표준 에러 (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... | ||||
