#include <bits/stdc++.h>
using namespace std;
typedef unsigned uint;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<pii> vpii;
typedef complex<double> cmplx;
template <typename T> using minPq = priority_queue<T, vector<T>, greater<T>>;
#define boost() cin.sync_with_stdio(0); cin.tie(0)
#define ms(a, x) memset(a, x, sizeof(a))
#define pb push_back
#define fs first
#define sn second
#define ALL(v) (v).begin(), (v).end()
#define SZ(v) ((int) (v).size())
#define lbv(v, x) (lower_bound((v).begin(), (v).end(), x) - (v).begin())
#define ubv(v, x) (upper_bound((v).begin(), (v).end(), x) - (v).begin())
template <typename T> inline void UNIQUE(vector<T> &v){sort(ALL(v)); v.resize(unique(ALL(v)) - v.begin());}
const int INF = 0x3f3f3f3f;
const ll LLINF = 0x3f3f3f3f3f3f3f3f;
const double PI = acos(-1);
#define FR(i, n) for(int i = 0; i < (n); i++)
#define FOR(i, a, b) for(int i = (a); i < (b); i++)
#define FORR(i, a, b) for(int i = (a); i >= (b); i--)
#define dbg(x) {cout << #x << ' ' << x << endl;}
#define dbgArr(arr, n) {cout << #arr; FR(_i, n) cout << ' ' << arr[_i]; cout << endl;}
struct Edge {
int t, n1, n2;
bool operator<(Edge e) const {
return t < e.t;
}
};
const int MN = 505;
const int ME = 1005;
const int MQ = 1e6 + 5;
int n, m, q;
vector<Edge> adjList[MN]; // {t, node, id}
int queries[MQ], qi;
bool vis[MN];
set<pii> spanAdjList[MN];
vi spanTree;
Edge edges[ME];
int edgeMn[ME];
pii nextEvent;
multiset<int> st;
void dfs(int n1){
for(Edge e : adjList[n1]){
if(!st.empty()) edgeMn[e.n2] = min(edgeMn[e.n2], *st.begin());
}
for(auto [n2, c2] : spanAdjList[n1]){
auto iter = st.insert(c2);
dfs(n2);
st.erase(iter);
}
}
void recalc(int t){
spanTree.clear();
FR(i, n){
spanAdjList[i].clear();
vis[i] = false;
}
minPq<pair<int, Edge>> pq;
pq.push({0, {0, 0, 0}});
while(!pq.empty()){
auto [c, e] = pq.top(); pq.pop();
if(vis[e.n2]) continue;
vis[e.n2] = true;
if(e.t) spanAdjList[e.n1].insert({e.n2, e.t}), spanTree.pb(e.t);
for(Edge e2 : adjList[e.n2]){
if(!vis[e2.n1]) pq.push({abs(t - e2.t), {e2.t, e.n2, e2.n1}});
}
}
ms(edgeMn, INF);
dfs(0);
nextEvent = {INF, -1};
FR(i, m){
if(edgeMn[i] >= edges[i].t) continue;
int dec = (edgeMn[i] + edges[i].t + 2)/2;
if(dec > t) nextEvent = min(nextEvent, pii{dec, i});
}
}
int main(){
boost();
cin >> n >> m;
FR(i, m){
int a, b, c;
cin >> a >> b >> c;
a--; b--;
adjList[a].pb({c, b, i});
adjList[b].pb({c, a, i});
edges[i] = {c, a, b};
}
cin >> q;
FR(i, q) cin >> queries[i];
while(qi < q){
int t = queries[qi];
if(nextEvent.fs <= t) recalc(t);
ll val = 0;
for(int x : spanTree) val += abs(t - x);
cout << val << '\n';
qi++;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
356 KB |
Output is correct |
2 |
Correct |
1 ms |
368 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
356 KB |
Output is correct |
2 |
Correct |
1 ms |
368 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Runtime error |
168 ms |
25960 KB |
Execution killed with signal 11 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
356 KB |
Output is correct |
2 |
Correct |
1 ms |
368 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
356 KB |
Output is correct |
2 |
Correct |
1 ms |
368 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
356 KB |
Output is correct |
2 |
Correct |
1 ms |
368 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |