# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
140375 | muradeyn | Crocodile's Underground City (IOI11_crocodile) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "crocodile.h"
#include <bits/stdc++.h>
#define F first
#define S second
using namespace std;
const int maxx = 100000;
int x , y;
int ext[maxx];
long long min1[maxx] , min2[maxx];
vector< pair<long long,int> >v[maxx];
priority_queue< pair<long long,int> >pq;
void dijkstra() {
while (!pq.empty()) {
int x = pq.top().S;
long long y = pq.top().F;
pq.pop();
y *= -1;
if (!ext[x] && y > min2[x])continue;
for (auto to : v[x]) {
if (min1[to.F] == -1) {
min1[to.F] = y + to.S;
continue;
}