QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#757938 | #8136. Rebellious Edge | raspa | TL | 7ms | 31124kb | C++14 | 1.7kb | 2024-11-17 14:44:34 | 2024-11-17 14:44:34 |
Judging History
answer
//Oh? You're Approaching Me?
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
//#pragma GCC optimize("O3,unroll-loops")
#define migmig ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define pb push_back
#define F first
#define S second
#define SZ(x) ll((x).size())
#define all(x) (x).begin(), (x).end()
#define cl clear
#define endl '\n'
#define deb(x) cerr << #x << " = " << x << '\n'
#define dokme(x) {cout << x << endl; return;}
#define wtf cout << "[ahaaaaaaaaaaaaaaaa]" << endl;
const int MAXN = 1e6 + 10;
const int MOD = 1e9 + 7; //998244353
const ll INF = 1e18;
const int inf = 1e9 + 90;
const int maxLG = 20;
const int SQ = 350;
int n, m, dist[MAXN];
vector<pii> G[MAXN];
bitset<MAXN> vis;
set<pii> se;
ll MST = 0;
inline void add(int v) {
for (auto [u, w] : G[v]) {
if (!vis[u]) {
se.erase({dist[u], u});
se.insert({(dist[u] = w), u});
}
}
}
void prim() {
dist[1] = 0;
add(1);
se.insert({0, 1});
for (int i = 1; i <= n; i++) {
if (se.empty()) {
return;
}
auto tmp = *(se.begin());
int v = tmp.S;
MST += tmp.F;
se.erase(tmp);
add(v);
vis[v] = 1;
}
}
int main() {
migmig;
int T;
cin >> T;
while (T--) {
cin >> n >> m;
memset(dist, 63, sizeof dist);
for (int i = 1; i <= m; i++) {
int v, u, w;
cin >> v >> u >> w;
G[v].pb({u, w});
// G[u].pb({v, w});
}
prim();
// deb(MST);
cout << MST << endl;
MST = 0;
for (int i = 1; i <= n; i++)
G[i].cl();
se.cl();
vis.reset();
}
}
/*
5 6
1 2 4
1 3 2
2 3 0
3 4 1
4 5 1
5 2 1
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 7ms
memory: 31124kb
input:
3 5 6 1 2 4 1 3 2 2 3 0 3 4 1 4 5 1 5 2 1 4 4 1 2 4 1 3 6 1 4 8 4 2 1000000 3 3 1 2 100 2 1 10 2 3 1000
output:
5 18 1100
result:
ok 3 number(s): "5 18 1100"
Test #2:
score: -100
Time Limit Exceeded
input:
50000 4 5 2 4 998973548 2 3 501271695 4 1 778395982 1 4 32454891 1 2 757288934 4 5 1 4 720856669 2 3 665098951 3 4 407461517 2 1 866914401 1 2 457859826 4 5 1 2 75288664 1 4 624893594 3 2 458973866 2 4 769074655 2 3 834773751 4 5 2 3 237060634 2 4 297307882 3 4 200383586 1 2 42856502 3 1 16574713 4 ...
output:
1291015520 1530420294 1679137070 480300722 1484057993 1541095843 2567005573 858095911 1039553235 793861088 605832428 1051598350 612891589 1265994009 517769091 1899616226 1556463491 93634961 960978736 984886788 1696503797 1002892611 1969660290 1431417780 1515267731 977157479 1937478556 654475526 1451...