이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
#pragma GCC optimize ("O3", "unroll-loops")
using namespace std;
#define ll long long
const int nx=67, kx=256;
struct bignum
{
vector<ll> val;
bignum(): val(nx, 0){}
bignum(ll x)
{
val.assign(nx, 0);
for (int i=0; i<nx&&x>0; i++)
{
val[i]=x%kx;
x/=kx;
}
}
bignum &operator+=(const bignum &rhs)
{
ll carry=0;
for (int i=0; i<nx; i++)
{
val[i]+=rhs.val[i]+carry;
carry=val[i]/kx;
val[i]-=carry*kx;
}
return *this;
}
bignum &operator-=(const bignum &rhs)
{
ll carry=0;
for (int i=0; i<nx; i++)
{
val[i]-=rhs.val[i]+carry;
carry=0;
if (val[i]<0) {
val[i]+=kx;
carry++;
}
}
return *this;
}
bignum &operator*=(const ll &rhs)
{
ll carry=0;
for (int i=0; i<nx; i++)
{
val[i]*=rhs;
val[i]+=carry;
carry=val[i]/kx;
val[i]-=carry*kx;
}
return *this;
}
friend bignum operator+(const bignum &lhs, const bignum &rhs) {return bignum(lhs)+=rhs;}
friend bignum operator-(const bignum &lhs, const bignum &rhs) {return bignum(lhs)+=rhs;}
friend bignum operator*(const bignum &lhs, const ll &rhs) {return bignum(lhs)*=rhs;}
friend bignum operator*(const ll &lhs, const bignum &rhs) {return bignum(rhs)*=lhs;}
int cmp(const bignum &rhs) {
for (int i=nx-1; i>=0; i--)
{
if (val[i]<rhs.val[i]) return -1;
if (val[i]>rhs.val[i]) return 1;
}
return 0;
}
bool operator<(const bignum &rhs) {return cmp(rhs)==-1;}
bool operator>(const bignum &rhs) {return cmp(rhs)==1;}
bool operator<=(const bignum &rhs) {return cmp(rhs)!=1;}
bool operator>=(const bignum &rhs) {return cmp(rhs)!=-1;}
bool operator==(const bignum &rhs) {return cmp(rhs)==0;}
bool operator!=(const bignum &rhs) {return cmp(rhs)!=0;}
string to_str()
{
auto res=val;
while (res.size()>1&&res.back()==0) res.pop_back();
reverse(res.begin(), res.end());
string s="";
for (auto x:res) s+=to_string(x)+" ";
s.pop_back();
return s;
}
};
void encode(int N, int M[])
{
bignum vl, tmp;
vector<vector<bignum>> dp(580, vector<bignum> (270));
for (int i=0; i<N; i++) vl.val[i]=M[N-1-i];
for (int i=0; i<580; i++)
{
for (int j=0; j<=min(i, 269); j++)
{
if (j==0||j==i) dp[i][j]=1;
else dp[i][j]=dp[i-1][j]+dp[i-1][j-1];
}
}
vector<int> s(kx+1);
int left=320;
for (int i=0; i<kx; i++)
{
tmp=0;
for (int j=left; j>=0; j--)
{
if (dp[kx-i-1+left-j][kx-i-1]+tmp>vl)
{
vl-=tmp;
s[i]=j;
left-=j;
break;
}
tmp+=dp[kx-i-1+left-j][kx-i-1];
}
}
s[kx]=left;
for (int i=0; i<kx; i++) for (int j=0; j<s[i+1]; j++) send(i);
}
#include "decoder.h"
#include "decoderlib.h"
#include <bits/stdc++.h>
#pragma GCC optimize ("O3", "unroll-loops")
using namespace std;
#define ll long long
const int nx=67, kx=256;
struct bignum
{
vector<ll> val;
bignum(): val(nx, 0){}
bignum(ll x)
{
val.assign(nx, 0);
for (int i=0; i<nx&&x>0; i++)
{
val[i]=x%kx;
x/=kx;
}
}
bignum &operator+=(const bignum &rhs)
{
ll carry=0;
for (int i=0; i<nx; i++)
{
val[i]+=rhs.val[i]+carry;
carry=val[i]/kx;
val[i]-=carry*kx;
}
return *this;
}
bignum &operator-=(const bignum &rhs)
{
ll carry=0;
for (int i=0; i<nx; i++)
{
val[i]-=rhs.val[i]+carry;
carry=0;
if (val[i]<0) {
val[i]+=kx;
carry++;
}
}
return *this;
}
bignum &operator*=(const ll &rhs)
{
ll carry=0;
for (int i=0; i<nx; i++)
{
val[i]*=rhs;
val[i]+=carry;
carry=val[i]/kx;
val[i]-=carry*kx;
}
return *this;
}
friend bignum operator+(const bignum &lhs, const bignum &rhs) {return bignum(lhs)+=rhs;}
friend bignum operator-(const bignum &lhs, const bignum &rhs) {return bignum(lhs)+=rhs;}
friend bignum operator*(const bignum &lhs, const ll &rhs) {return bignum(lhs)*=rhs;}
friend bignum operator*(const ll &lhs, const bignum &rhs) {return bignum(rhs)*=lhs;}
int cmp(const bignum &rhs) {
for (int i=nx-1; i>=0; i--)
{
if (val[i]<rhs.val[i]) return -1;
if (val[i]>rhs.val[i]) return 1;
}
return 0;
}
bool operator<(const bignum &rhs) {return cmp(rhs)==-1;}
bool operator>(const bignum &rhs) {return cmp(rhs)==1;}
bool operator<=(const bignum &rhs) {return cmp(rhs)!=1;}
bool operator>=(const bignum &rhs) {return cmp(rhs)!=-1;}
bool operator==(const bignum &rhs) {return cmp(rhs)==0;}
bool operator!=(const bignum &rhs) {return cmp(rhs)!=0;}
string to_str()
{
auto res=val;
while (res.size()>1&&res.back()==0) res.pop_back();
reverse(res.begin(), res.end());
string s="";
for (auto x:res) s+=to_string(x)+" ";
s.pop_back();
return s;
}
};
void decode(int N, int L, int X[])
{
bignum res=0;
int sm=0;
vector<int> s(kx+1, 0);
for (int i=0; i<L; i++) s[X[i]+1]++, sm++;
s[0]=320-sm;
vector<vector<bignum>> dp(580, vector<bignum> (270));
for (int i=0; i<580; i++)
{
for (int j=0; j<=min(i, 269); j++)
{
if (j==0||j==i) dp[i][j]=1;
else dp[i][j]=dp[i-1][j]+dp[i-1][j-1];
}
}
int left=320;
for (int i=0; i<kx; i++)
{
for (int j=left; j>s[i]; j--)
{
res+=dp[kx-i-1+left-j][kx-i-1];
}
left-=s[i];
}
res+=s[kx];
vector<int> ans(N, 0);
for (int i=0; i<N; i++) ans[N-1-i]=res.val[i];
for (int i=0; i<N; i++) output(ans[i]);
}
/*
10
1 1 2 1 2 3 1 7 10 9
*/
# | 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... |