# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
995118 | prvocislo | Spy 3 (JOI24_spy3) | C++17 | 933 ms | 39476 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Aoi.h"
#include <algorithm>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cmath>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <string>
#include <vector>
typedef long long ll;
typedef long double ld;
using namespace std;
string aoi(int n, int m, int q, int k, vector<int> a,
vector<int> b, vector<long long> c,
vector<int> t, vector<int> x)
{
const ll inf = 1e18 + 5;
vector<ll> d(n, inf);
vector<int>p(n, -1);
vector<vector<pair<int, ll> > > g(n);
for (int i = 0; i < m; i++) g[a[i]].push_back({ b[i], c[i] }), g[b[i]].push_back({ a[i], c[i] });
set<pair<ll, pair<int, int> > > pq;
pq.insert({ 0, {0, -1} });
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |