0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 18:28:47 +00:00

#1498. 换乘(transfer)

https://sjzezoj.com/submission/55703
This commit is contained in:
Baoshuo Ren 2022-08-26 07:50:12 +08:00
parent 4ffc98b854
commit 50abfb0abc
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
22 changed files with 153 additions and 0 deletions

90
S2OJ/1498/1498.cpp Normal file
View File

@ -0,0 +1,90 @@
#include <iostream>
#include <cstring>
#include <deque>
#include <set>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1000005;
int n, m, id[N], last[N], dist[N];
bool vis[N];
std::set<int> cs;
std::vector<std::pair<int, int>> c[N], g[N];
void bfs() {
memset(dist, 0x3f, sizeof(dist));
std::deque<int> q;
dist[1] = 0;
q.emplace_back(1);
while (!q.empty()) {
int u = q.front();
q.pop_front();
if (vis[u]) continue;
vis[u] = true;
for (auto e : g[u]) {
int v = e.first,
w = e.second;
if (dist[v] > dist[u] + w) {
dist[v] = dist[u] + w;
if (w) q.emplace_back(v);
else q.emplace_front(v);
}
}
}
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
for (int i = 1, u, v, c; i <= m; i++) {
cin >> u >> v >> c;
::c[c].emplace_back(u, v);
cs.insert(c);
}
int cnt = n;
for (int x : cs) {
for (auto e : c[x]) {
int u = e.first,
v = e.second;
if (last[u] != x) {
last[u] = x;
id[u] = ++cnt;
g[u].emplace_back(id[u], 1);
g[id[u]].emplace_back(u, 0);
}
if (last[v] != x) {
last[v] = x;
id[v] = ++cnt;
g[v].emplace_back(id[v], 1);
g[id[v]].emplace_back(v, 0);
}
g[id[u]].emplace_back(id[v], 0);
g[id[v]].emplace_back(id[u], 0);
}
}
bfs();
cout << (dist[n] == 0x3f3f3f3f ? -1 : dist[n]) << endl;
return 0;
}

BIN
S2OJ/1498/data/data1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/data9.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1498/data/problem.conf (Stored with Git LFS) Normal file

Binary file not shown.