mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 22:48:48 +00:00
1731. [USACO 2005 Dec] Layout 排队布局
https://hydro.ac/d/bzoj/record/63b6d364291ec3514f4e3b50
This commit is contained in:
parent
d512177fcb
commit
4b559955d0
82
BZOJ/1731/1731.cpp
Normal file
82
BZOJ/1731/1731.cpp
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
#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() {
|
||||||
|
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(1);
|
||||||
|
dist[1] = 0;
|
||||||
|
vis[1] = 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, 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()) {
|
||||||
|
cout << -1 << endl;
|
||||||
|
} else {
|
||||||
|
cout << (dist[n] == INF ? -2 : dist[n]) << endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user