0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00

P4878 [USACO05DEC]Layout G

https://www.luogu.com.cn/record/98781737
This commit is contained in:
Baoshuo Ren 2023-01-05 21:54:14 +08:00
parent 4b559955d0
commit 33ce941813
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
3 changed files with 96 additions and 0 deletions

90
Luogu/P4878/P4878.cpp Normal file
View File

@ -0,0 +1,90 @@
#include <iostream>
#include <algorithm>
#include <iterator>
#include <queue>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1005;
const int INF = 0x3f3f3f3f;
int n, ml, md, cnt[N], dist[N];
std::vector<std::pair<int, int>> g[N];
bool vis[N];
bool spfa(int s) {
std::fill(std::begin(cnt), std::end(cnt), 0);
std::fill(std::begin(vis), std::end(vis), false);
std::fill(std::begin(dist), std::end(dist), INF);
std::queue<int> q;
q.emplace(s);
dist[s] = 0;
vis[s] = true;
while (!q.empty()) {
int u = q.front();
q.pop();
vis[u] = false;
for (auto e : g[u]) {
int v = e.first,
w = e.second;
if (dist[v] > dist[u] + w) {
dist[v] = dist[u] + w;
if (!vis[v]) {
cnt[v] = cnt[u] + 1;
if (cnt[v] >= n) return false;
vis[v] = true;
q.emplace(v);
}
}
}
}
return true;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> ml >> md;
for (int i = 1; i <= n; i++) {
g[0].emplace_back(i, 0);
}
for (int i = 2; i <= n; i++) {
g[i].emplace_back(i - 1, 0);
}
for (int i = 1, a, b, c; i <= ml; i++) {
cin >> a >> b >> c;
g[a].emplace_back(b, c);
}
for (int i = 1, a, b, c; i <= md; i++) {
cin >> a >> b >> c;
g[b].emplace_back(a, -c);
}
if (spfa(0) && spfa(1)) {
cout << (dist[n] == INF ? -2 : dist[n]) << endl;
} else {
cout << -1 << endl;
}
return 0;
}

BIN
Luogu/P4878/data/P4878_14.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4878/data/P4878_14.out (Stored with Git LFS) Normal file

Binary file not shown.