Submission #968828

#TimeUsernameProblemLanguageResultExecution timeMemory
968828blackslexCities (BOI16_cities)C++17
0 / 100
860 ms262144 KiB
#include<bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<ll, ll>; int n, m, k, x, y; ll z; int main() { scanf("%d %d %d", &n, &k, &m); vector<int> c(k); for (auto &e: c) scanf("%d", &e); vector<vector<ll>> d(n + 5, vector<ll>(n + 5, 1e18)); for (int i = 1; i <= n; i++) d[i][i] = 0; while (m--) scanf("%d %d %lld", &x, &y, &z), d[x][y] = min(d[x][y], z), d[y][x] = min(d[y][x], z); for (int l = 1; l <= n; l++) for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) d[i][j] = min(d[i][j], d[i][k] + d[k][j]); ll ans = 1e18; for (int i = 1; i <= n; i++) { ll cur = 0; for (int t = 0; t < k; t++) ans += d[i][c[t]]; ans = min(ans, cur); } for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { for (int msk = 0; msk < (1 << k); msk++) { ll cur = d[i][j]; for (int t = 0; t < k; t++) { if (msk & (1 << t)) cur += d[i][c[t]]; else cur += d[j][c[t]]; } ans = min(ans, cur); } } } printf("%lld", ans); }

Compilation message (stderr)

cities.cpp: In function 'int main()':
cities.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |     scanf("%d %d %d", &n, &k, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
cities.cpp:13:27: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |     for (auto &e: c) scanf("%d", &e);
      |                      ~~~~~^~~~~~~~~~
cities.cpp:16:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |     while (m--) scanf("%d %d %lld", &x, &y, &z), d[x][y] = min(d[x][y], z), d[y][x] = min(d[y][x], z);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...