이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"bits/stdc++.h"
//#include"scrivener.h"
#define overload(a,b,c,d,...) d
#define rep1(a) for(ll _=0;_<(ll)a;++_)
#define rep2(i,a) for(ll i=0;i<(ll)(a);++i)
#define rep3(i,a,b) for(ll i=(ll)(a);i<(ll)(b);++i)
#define rep(...) overload(__VA_ARGS__,rep3,rep2,rep1)(__VA_ARGS__)
#define rrep1(i,a) for(ll i=(ll)(a)-1;i>=0;--i)
#define rrep2(i,a,b) for(ll i=(ll)(b)-1;i>=(ll)(a);--i)
#define rrep(...) overload(__VA_ARGS__,rrep2,rrep1)(__VA_ARGS__)
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define pb push_back
#define eb emplace_back
using namespace std;
using ll=long long;
using ull=unsigned long long;
using i128=__int128_t;
using ld=long double;
using vi=vector<int>;
using vl=vector<ll>;
template<typename T,typename U>inline bool chmin(T&a,const U&b){return (a>b?a=b,true:false);}
template<typename T,typename U>inline bool chmax(T&a,const U&b){return (a<b?a=b,true:false);}
struct Node{
int val;
int ch[16]={};
Node():val(-1){
rep(i,16)ch[i]=-1;
}
};
Node nodes[10000000];
int sz;
int change(const Node&nd,int idx,int val){
int res=sz;
nodes[sz]=Node();
Node&ret=nodes[sz++];
rep(i,16)ret.ch[i]=nd.ch[i];
if(idx==0){
ret.val=val;
}
else{
if(ret.ch[idx&15]==-1){
ret.ch[idx&15]=sz;
nodes[sz++]=Node();
}
ret.ch[idx&15]=change(nodes[ret.ch[idx&15]],idx>>4,val);
}
return res;
}
int get(const Node&nd,int idx){
if(idx==0)return nd.val;
if(nd.ch[idx&15]==-1)return -1;
return get(nodes[nd.ch[idx&15]],idx>>4);
}
vector<pair<int,Node>>st;
void Init() {
st.clear();
sz=1;
nodes[0]=Node();
st.eb(0,nodes[0]);
}
void TypeLetter(char L) {
//cerr<<"Type Letter "<<L<<endl;
int len=st.back().first;
Node&nd=st.back().second;
st.emplace_back(len+1,nodes[change(nd,len,L-'a')]);
//cerr<<sz<<endl;
}
void UndoCommands(int U) {
//cerr<<"Undo Commands "<<U<<endl;
assert(st.size()>=U);
st.emplace_back(st[st.size()-1-U]);
//cerr<<sz<<endl;
}
char GetLetter(int P) {
//cerr<<"Get Letter "<<P<<endl;
return 'a'+get(st.back().second,P);
}
컴파일 시 표준 에러 (stderr) 메시지
In file included from /usr/include/c++/10/cassert:44,
from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
from scrivener.cpp:1:
scrivener.cpp: In function 'void UndoCommands(int)':
scrivener.cpp:74:21: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, Node> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
74 | assert(st.size()>=U);
| ~~~~~~~~~^~~
# | 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... |