# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
157734 | TadijaSebez | Sushi (JOI16_sushi) | C++11 | 432 ms | 41968 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N=400050;
const int S=447;
set<int> pos[N/S];
multiset<pair<int,int>> st[N/S];
int a[N];
int Push(int B, int x)
{
st[B].insert({x,0});
int p;tie(x,p)=*st[B].rbegin();
st[B].erase(--st[B].end());
if(p) pos[B].insert(-p);
return x;
}
void BuildBlock(int B, int l, int r)
{
pos[B].clear();
for(int i=l;i<=r;i++) st[B].insert({a[i],-i});
}
void BreakBlock(int B)
{
while(st[B].size())
{
int p=-1;
if(pos[B].size()) p=*pos[B].rbegin(),pos[B].erase(--pos[B].end());
while(st[B].size() && -st[B].rbegin()->second>p)
{
a[-st[B].rbegin()->second]=st[B].rbegin()->first;
st[B].erase(--st[B].end());
컴파일 시 표준 에러 (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... |