Submission #212763

#TimeUsernameProblemLanguageResultExecution timeMemory
212763BTheroMaking Friends on Joitter is Fun (JOI20_joitter2)C++17
0 / 100
12 ms9728 KiB
#define DBG 1 // chrono::system_clock::now().time_since_epoch().count() #include<bits/stdc++.h> //#include<ext/pb_ds/tree_policy.hpp> //#include<ext/pb_ds/assoc_container.hpp> #define pb push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define all(x) (x).begin(), (x).end() #define debug(x) if (DBG) cerr << #x << " = " << x << endl; using namespace std; //using namespace __gnu_pbds; typedef long long ll; typedef pair<int, int> pii; //template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; const int MAXN = (int)1e5 + 5; const int MAXM = (int)1e6 + 5; set<int> in[MAXN], out[MAXN]; int par[MAXN], sz[MAXN]; pii Q[MAXM]; int n, m, t; ll ans; ll f(int x) { return sz[x] * (sz[x] - 1ll + in[x].size()); } int getPar(int x) { if (x == par[x]) { return x; } return par[x] = getPar(par[x]); } void uni(int a, int b) { a = getPar(a); b = getPar(b); if (a == b) { return; } ans -= f(a); ans -= f(b); out[a].erase(b); in[a].erase(b); out[b].erase(a); in[b].erase(a); for (int x : in[b]) { out[x].erase(b); out[x].insert(a); in[a].insert(x); if (out[a].find(x) != out[a].end()) { Q[t++] = mp(a, x); } } for (int x : out[b]) { in[x].erase(b); in[x].insert(a); out[a].insert(x); if (in[a].find(x) != in[a].end()) { Q[t++] = mp(a, x); } } in[b].clear(); out[b].clear(); par[b] = a; sz[a] += sz[b]; ans += f(a); } void push() { for (int i = 0; i < t; ++i) { uni(Q[i].fi, Q[i].se); } } void solve() { scanf("%d %d", &n, &m); for (int i = 1; i <= n; ++i) { par[i] = i; sz[i] = 1; } for (int i = 1; i <= m; ++i) { int u, v; scanf("%d %d", &u, &v); u = getPar(u); v = getPar(v); if (u != v) { out[u].insert(v); ans -= f(v); in[v].insert(u); ans += f(v); if (in[u].find(v) != in[u].end()) { t = 0; Q[t++] = mp(u, v); push(); } } printf("%lld\n", ans); } } int main() { int tt = 1; while (tt--) { solve(); } return 0; }

Compilation message (stderr)

joitter2.cpp: In function 'void solve()':
joitter2.cpp:94:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &m);
  ~~~~~^~~~~~~~~~~~~~~~~
joitter2.cpp:103:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d", &u, &v);
         ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...