# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
285137 | Pyqe | Bubble Sort 2 (JOI18_bubblesort2) | C++14 | 3813 ms | 129084 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "bubblesort2.h"
#include <bits/stdc++.h>
using namespace std;
#define mp make_pair
#define fr first
#define sc second
int n,inf=1e9;
pair<int,int> as[1000069];
struct segtree
{
int l,r,mx,lz;
segtree *p[2];
void bd(int lh,int rh)
{
l=lh;
r=rh;
mx=-inf;
lz=0;
if(l==r);
else
{
int ii,md=(l+r)/2;
for(ii=0;ii<2;ii++)
{
# | 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... |