이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gondola.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vii;
typedef pair<int,int> pi;
typedef vector<pi> pii;
typedef tuple<int,int,int> tii;
typedef vector<ll> li;
typedef vector<li> lii;
#define REP(i,a,b) for(int i=a;i<b;i++)
#define F first
#define S second
#define PB push_back
#define MP make_pair
#define LSOne(s) ((s)&(-s))
ll INF=1e18+10;
int inf=1e9+10;
ll M=1e9+9;
int valid(int n, int inputSeq[])
{
bool flag=1;
int pos=0,val=inf;
REP(i,0,n)if(inputSeq[i]<val){
val=inputSeq[i];
pos=i;
}
if(val>n){
sort(inputSeq,inputSeq+n);
REP(i,0,n-1)if(inputSeq[i]==inputSeq[i+1])flag=0;
if(flag)return 1;
return 0;
}
int c=pos;
pos++;val++;
pos%=n;val%=n;if(val==0)val=n;
while(pos!=c){
if(inputSeq[pos]!=val&&inputSeq[pos]<=n){
flag=0;
break;
}
pos++;val++;
pos%=n;val%=n;if(val==0)val=n;
}
sort(inputSeq,inputSeq+n);
REP(i,0,n-1)if(inputSeq[i]==inputSeq[i+1])flag=0;
if(flag)return 1;
return 0;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
int pos=0,val=inf;
REP(i,0,n)if(gondolaSeq[i]<val){
val=gondolaSeq[i];
pos=i;
}
priority_queue<pi,vector<pi>,greater<pi>> pq;
int c=pos;pos%=n;val%=n;if(val==0)val=n;
if(gondolaSeq[pos]!=val)pq.push({gondolaSeq[pos],val});
pos++;val++;
pos%=n;val%=n;if(val==0)val=n;
while(pos!=c){
if(gondolaSeq[pos]!=val)pq.push({gondolaSeq[pos],val});
pos++;val++;
pos%=n;val%=n;if(val==0)val=n;
}
vi ans;int k=n+1;
while(!pq.empty()){
int x=pq.top().F;
int y=pq.top().S;
pq.pop();
ans.PB(y);
REP(i,k,x)ans.PB(i);
k=x+1;
}
int m=ans.size();
REP(i,0,m)replacementSeq[i]=ans[i];
return m;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
ll ans=1;
if(valid(n,inputSeq)==0)return 0;
int val=inputSeq[0];
if(val>n)ans=n;
int pos=n-1;vi arr;
while(inputSeq[pos]>n&&pos>=0)arr.PB(inputSeq[pos--]);
if(arr.empty())return 1;
arr.PB(n);pos=0;
ll k=0;ll val2=arr[0];pos++;k++;
int s=arr.size();
while(pos<s){
int t=val2-arr[pos]-1;
if(t!=0){
vector<ll> brr(31);
brr[0]=1;brr[1]=k;
REP(i,2,31){
brr[i]=brr[i-1]*brr[i-1];
brr[i]%=M;
}
REP(i,0,30)if(t&(1<<i)){
ans*=brr[i+1];
ans%=M;
}
}
val2=arr[pos];
pos++;k++;
}
return (int)ans;
}
# | 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... |