# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
631824 | NintsiChkhaidze | One-Way Streets (CEOI17_oneway) | C++14 | 388 ms | 38324 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define s second
#define f first
#define pb push_back
#define left (h<<1),l,((l+r)>>1)
#define right ((h<<1)|1),((l+r)>>1) + 1,r
using namespace std;
const int N = 100005;
int tin[N],low[N],a[N],b[N],ID[N],in[N],out[N],dp[N],d[25][N],n1[N],n2[N];
int t[5][4*N],op[N],cl[N];
bool O[N],C[N],bridge[N],vis[N];
vector <int> adj[N],vec[N];
vector <pair<int,int> > v[N];
int idx,cnt,n;
//sworia upd
void upd(int id,int h,int l,int r,int idx,int val){
if (l == r){
t[id][h] += val;
return;
}
if (idx > ((l + r)>>1)) upd(id,right,idx,val);
else upd(id,left,idx,val);
t[1][h] = max(t[1][h*2],t[1][h*2+1]);
t[2][h] = max(t[2][h*2],t[2][h*2+1]);
}
//sworia get
int get(int id,int h,int l,int r,int L,int R){
컴파일 시 표준 에러 (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... |