CF-1209 F. Koala and Notebook(建图BFS)
生活随笔
收集整理的這篇文章主要介紹了
CF-1209 F. Koala and Notebook(建图BFS)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
CF-1209 F. Koala and Notebook(建圖BFS)
題目鏈接
題意
n個城市m個雙向邊,從點1可以到達任何點,把點1到到其他點所經過的邊寫成一行可以得到一個大數,你的任務使得這個數字盡可能的小.
思路
例如第i條邊是u->v,把這條邊拆成u->i_1->i_2->…->i_n->v
然后bfs:對于相同狀態的點依次從小數[0-9]擴展,擴展到的點更新答案
#include <bits/stdc++.h> const int maxn = 1e6 + 5; const int mod = 1e9 + 7; using namespace std; vector<int> g[maxn][10], que[maxn]; int cnt, vis[maxn]; long long ans[maxn]; void add(int u, int v, int d) {vector<int> tmp;while (d) {tmp.push_back(d%10);d /= 10;}reverse(tmp.begin(), tmp.end());int l = u, r, len = tmp.size();for (int i = 0; i < len; ++i) {if (i == len-1) r = v;else r = ++cnt;g[l][tmp[i]].push_back(r);l = r;}// 反向l = v;for (int i = 0; i < len; ++i) {if (i == len-1) r = u;else r = ++cnt;g[l][tmp[i]].push_back(r);l = r; } } int main() {int n, m;cin >> n >> m;cnt = n;for (int i = 1; i <= m; ++i) {int u, v;cin >> u >> v;add(u, v, i);}que[1].push_back(1);vis[1] = 1;int now = 1;for (int k = 1; k <= now; ++k){for (int i = 0; i < 10; ++i) { // small is firstint flag = 0;for (auto u : que[k]) {for (auto v : g[u][i]) {if (vis[v]) continue;vis[v] = flag = 1;ans[v] = (ans[u]*10 + i) % mod;que[now+1].push_back(v);}}if (flag) now++;}}for (int i = 2; i <= n; ++i) {cout << ans[i] << endl;}return 0; } 與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的CF-1209 F. Koala and Notebook(建图BFS)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CF-557 E. Ann and Ha
- 下一篇: CF-1249 F.Maximum We