You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.3 KiB

2 years ago
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> PII;
const int N = 100010, M = 400010;
const int MOD = 100003;
int n, m;
int cnt[N];
2 years ago
int dis[N];
2 years ago
bool st[N];
int h[N], e[M], ne[M], idx;
void add(int a, int b) {
e[idx] = b, ne[idx] = h[a], h[a] = idx++;
}
void dijkstra() {
2 years ago
memset(dis, 0x3f, sizeof dis);
dis[1] = 0;
cnt[1] = 1; // 出发点到自己的最短路径有1条长度是0
2 years ago
// 小顶堆q
2 years ago
priority_queue<PII, vector<PII>, greater<PII>> q;
q.push({0, 1});
2 years ago
2 years ago
while (q.size()) {
auto t = q.top();
q.pop();
int u = t.second;
2 years ago
if (st[u]) continue;
st[u] = true;
for (int i = h[u]; ~i; i = ne[i]) {
int j = e[i];
2 years ago
if (dis[j] > dis[u] + 1) {
dis[j] = dis[u] + 1;
2 years ago
cnt[j] = cnt[u];
2 years ago
q.push({dis[j], j});
} else if (dis[j] == dis[u] + 1)
2 years ago
cnt[j] = (cnt[j] + cnt[u]) % MOD;
}
}
}
int main() {
scanf("%d %d", &n, &m);
memset(h, -1, sizeof h);
while (m--) {
int a, b;
scanf("%d %d", &a, &b);
add(a, b), add(b, a);
}
dijkstra();
for (int i = 1; i <= n; i++) printf("%d\n", cnt[i]);
return 0;
}