QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#284082 | #5458. Shortest Path Query | bobbilyking | 0 | 2ms | 5836kb | C++17 | 2.2kb | 2023-12-16 03:54:45 | 2023-12-16 03:54:46 |
Judging History
你现在查看的是测评时间为 2023-12-16 03:54:46 的历史记录
- [2024-06-21 12:38:29]
- 管理员手动重测本题所有提交记录
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2023-12-16 03:54:45]
- 提交
answer
#pragma GCC target ("avx2")
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#include<bits/stdc++.h>
#include<math.h>
using namespace std;
typedef int ll;
typedef long double ld;
typedef pair<ll, ll> pl;
typedef vector<ll> vl;
#define FD(i, r, l) for(ll i = r; i > (l); --i)
#define K first
#define V second
#define G(x) ll x; cin >> x;
#define GD(x) ld x; cin >> x;
#define GS(s) string s; cin >> s;
#define EX(x) { cout << x << '\n'; exit(0); }
#define A(a) (a).begin(), (a).end()
#define F(i, l, r) for (ll i = l; i < (r); ++i)
#define NN 50010
#define M 1000000007 // 998244353
vector<pl> opt[NN];
ll indeg[NN];
vector<pl> adj[NN];
int main(){
// freopen("a.in", "r", stdin);
// freopen("a.out", "w", stdout);
ios_base::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(20);
G(n) G(m) while(m--) {
G(u) G(v) G(c)
adj[u].emplace_back(v,c);
indeg[v]++;
}
opt[1] = {pair(0, 0)};
{
vector<ll> q{1}, nq;
for (; q.size(); swap(q, nq), nq.clear()) {
for (auto i: q) {
for (auto [x, w]: adj[i]) {
for (const auto &[a, b]: opt[i]) opt[x].emplace_back(a + (w==0), b + (w==1));
// fix opt[x]
{
sort(A(opt[x]));
vector<pl> temp;
// compute pareto front (should probably reason about this, i ahve shit intuition)
for (auto [x, y]: opt[x]) {
while (temp.size() and y >= temp.back().V) temp.pop_back();
temp.emplace_back(x, y);
}
opt[x] = temp;
}
// idk if this is needed or some more sophisticated merging is needed or some dumb merging is fine
if (!--indeg[x]) nq.push_back(x);
}
}
}
}
G(q) while(q--){
G(a) G(b) G(t)
ll ans = INT_MAX;
for (auto [x, y]: opt[t]) ans = min(ans, x*a + y*b);
cout << ans << '\n';
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 5836kb
input:
4 4 1 2 0 1 3 1 2 4 0 3 4 1 3 3 5 2 3 2 4 2 3 4
output:
3 4 4
result:
ok 3 number(s): "3 4 4"
Test #2:
score: -100
Time Limit Exceeded
input:
50000 100000 1 2 1 2 3 0 3 4 1 4 5 0 5 6 1 6 7 0 7 8 1 8 9 1 9 10 0 10 11 1 11 12 1 12 13 1 13 14 0 14 15 0 15 16 0 16 17 0 17 18 1 18 19 1 19 20 0 20 21 1 21 22 0 22 23 0 23 24 1 24 25 1 25 26 0 26 27 1 27 28 0 28 29 0 29 30 0 30 31 0 31 32 1 32 33 0 33 34 1 34 35 1 35 36 1 36 37 1 37 38 0 38 39 0 ...