# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
322347 | minoum | Jakarta Skyscrapers (APIO15_skyscraper) | C++17 | 1025 ms | 2060 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
const int MAXN = 3e4 + 1, inf = INT_MAX / 2;
int n, m, b[2], d[MAXN], sz = 0;
bool wasmn[MAXN];
vector <int> ps[MAXN];
inline void dij(){
for(int i = 0; i < n; i++) d[i] = inf;
d[b[0]] = 0;
for(int h = 0; h < n; h++){
int mn = inf, u = -1;
for(int i = 0; i < n; i++)
if(!wasmn[i] && d[i] < mn) mn = d[i], u = i;
wasmn[u] = true;
if(u == b[1] || d[u] >= inf) return;
for(int k: ps[u]){
for(int i = u % k; i < n; i += k)
if(d[i] > d[u] + (abs(u - i) / k)) d[i] = d[u] + (abs(u - i) / k);
}
}
return;
}
int main()
{
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
# | 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... |