# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
622780 | Bench0310 | 던전 (IOI21_dungeons) | C++17 | 7109 ms | 1069428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "dungeons.h"
#pragma GCC target ("popcnt")
using namespace std;
typedef long long ll;
const int N=400001;
int n;
int s[N];
int p[N];
int w[N];
int l[N];
int jump[N][11][12];
ll boost[N][11][12];
ll mn[N][11][12];
int won[N];
int to[N];
int pw[N];
const ll inf=(1ll<<60);
const int lim=10000000;
void chmin(ll &a,ll b){a=min(a,b);}
int msb(ll a)
{
int b=63-__builtin_clzll(a);
return (b/2);
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |