제출 #1090115

#제출 시각아이디문제언어결과실행 시간메모리
1090115LilPluton경주 (Race) (IOI11_race)C++14
0 / 100
3 ms8284 KiB
#include "race.h" #include <bits/stdc++.h> using namespace std; const int sz = 2e5 + 5; int n, res; vector<long long> dist(sz), dep(sz, 0); vector<vector<pair<int, int>>> adj(sz); int dij(int s, int need, int n) { vector<long long> dist(n, LLONG_MAX); vector<int> dep(n, INT_MAX); priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> q; dist[s] = 0; dep[s] = 0; q.push({0, s}); while (!q.empty()) { int v = q.top().second; long long d_v = q.top().first; q.pop(); if (d_v != dist[v]) { continue; } if (dist[v] == need) { return dep[v]; } for (auto i : adj[v]) { int u = i.first; int weight = i.second; if (dist[u] > dist[v] + weight) { dist[u] = dist[v] + weight; dep[u] = dep[v] + 1; q.push({dist[u], u}); } } } return LLONG_MAX; } int best_path(int N, int K, int H[][2], int L[]) { if (K == 1) { return 0; } for (int i = 0; i < N; ++i) { adj[H[i][0]].push_back({H[i][1], L[i]}); adj[H[i][1]].push_back({H[i][0], L[i]}); } int res = LLONG_MAX; for (int i = 0; i < N; ++i) { int path_length = dij(i, K, N); res = min(res, path_length); } return (res == LLONG_MAX ? -1 : res); }

컴파일 시 표준 에러 (stderr) 메시지

race.cpp: In function 'int dij(int, int, int)':
race.cpp:43:12: warning: overflow in conversion from 'long long int' to 'int' changes value from '9223372036854775807' to '-1' [-Woverflow]
   43 |     return LLONG_MAX;
      |            ^~~~~~~~~
race.cpp: In function 'int best_path(int, int, int (*)[2], int*)':
race.cpp:56:15: warning: overflow in conversion from 'long long int' to 'int' changes value from '9223372036854775807' to '-1' [-Woverflow]
   56 |     int res = LLONG_MAX;
      |               ^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...