# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
615537 | nohaxjustsoflo | Crocodile's Underground City (IOI11_crocodile) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<ll,null_type,less_equal<ll>,rb_tree_tag,tree_order_statistics_node_update> order_set;
mt19937 mt_rand(chrono::high_resolution_clock::now().time_since_epoch().count());
//uniform_int_distribution<int> gen; ///(min, max)
//int random() {return gen(mt_rand);}
const int mxN=2e5+5;
const int mod=998244353;
const int mxlogN=40;
const int mxK=26;
const int inf=2e9;
const int K=600;
struct edge
{
int u,v,w;
int other(int i)
{
return i^u^v;
}
}es[mxN];
vector<int> adj[mxN];
int vis[mxN];
#include "crocodile.h"
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[])
{
for(int i=0; i<M; i++)
{
int u=R[i][0],v=R[i][1],w=L[i];
es[i]={u,v,w};
adj[u].push_back(i);
adj[v].push_back(i);
}
priority_queue<pair<ll,int>> q;
for(int i=0; i<K; i++) q.push({0,P[i]});
while(q.size())
{
auto par=q.top(); q.pop();
int i=par.second;
ll w=-par.first;
if(!vis[i])
{
vis[i]++;
continue;
}
if(!i) return par.first;
for(int e:adj[i])
{
int j=es[e].other(i);
if(vis[i]==2) continue;
ll d=w+es[e].w;
q.push({-d,j});
}
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
}