Submission #431263

#TimeUsernameProblemLanguageResultExecution timeMemory
431263Kevin_Zhang_TWMaking Friends on Joitter is Fun (JOI20_joitter2)C++17
17 / 100
5031 ms56028 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; #define pb emplace_back #define AI(i) begin(i), end(i) template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); } template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); } #ifdef KEV #define DE(args...) kout("[ " + string(#args) + " ] = ", args) void kout() { cerr << endl; } template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); } template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l)==r], ++l; } #else #define DE(...) 0 #define debug(...) 0 #endif // My bug list : // integer overflow // 0based, 1based forgotten // index out of bound // n, m, i, j typo // some cases are missing const int MAX_N = 100010; ll ans; int n, m, g[MAX_N], sz[MAX_N], cost[MAX_N]; ll cntin[MAX_N]; set<tuple<int,int,int>> in[MAX_N], out[MAX_N]; void init() { iota(g, g+n+1, 0); fill(sz, sz + n + 1, 1); } int F(int i) { return i == g[i] ? i : g[i] = F(g[i]); } void rm(int x, int u) { --cost[x], --cost[u]; ans -= sz[ F(u) ]; --cntin[ F(u) ]; in[F(u)].erase({F(x),x,u}); out[F(x)].erase({F(u),x,u}); // in[F(u)][F(x)].erase({x, u}); // out[F(x)][F(u)].erase({x, u}); } void ad(int x, int u) { DE("ad", x, u); ++cost[x], ++cost[u]; ans += sz[ F(u) ]; ++cntin[ F(u) ]; in[F(u)].insert({F(x),x,u}); out[F(x)].insert({F(u),x,u}); //in[F(u)][F(x)].insert({x, u}); //out[F(x)][F(u)].insert({x, u}); } //bool mcnt(set<pair<int,int>> &st, int k) { // auto it = st.lower_bound({k, -1}); // return it != end(st) && it->first == k; // //return st.lower_bound({k, -1}) != st.upper_bound({k+1, -1}); //} void kick(int a, int b) { auto it = out[F(a)].lower_bound({F(b), -1, -1}); vector<pair<int,int>> vec; while (it != end(out[F(a)]) && get<0>(*it) == F(b)) { auto [q, w, e] = *it; vec.pb(w, e); it = out[F(a)].erase(it); } for (auto [x, y] : vec) rm(x, y); // if (out[F(a)].count(F(b)) == 0) return; // auto vec = out[F(a)][F(b)]; // out[F(a)].erase(F(b)); // for (auto [x, y] : vec) rm(x, y); } void add_edge(int a, int b) { if (F(a) == F(b)) return; DE(a, b); // if a already connected to group(b), then nothing happen auto it = in[F(b)].lower_bound({F(a), a, -1}); if (it != end(in[F(b)])) { auto [g, x, y] = *it; DE(g, x, y); } if (it != end(in[F(b)]) && get<0>(*it) == F(a) && get<1>(*it) == a) return; //if (mcnt(in[F(b)], F(a), a)) return; ad(a, b); it = out[F(b)].lower_bound({F(a), -1, -1}); if (it == end(out[F(b)]) || get<0>(*it) != F(a)) return; //if (!mcnt(out[F(b)], F(a))) return; //if (out[F(b)][F(a)].empty()) return; a = F(a), b = F(b); if (cost[a] > cost[b]) swap(a, b); kick(a, b), kick(b, a); vector<pair<int,int>> kl; for (auto [_, x, y] : in[a]) kl.pb(x, y); for (auto [_, x, y] : out[a]) kl.pb(x, y); // for (const auto &[_, vec] : in[a]) // for (const auto &p : vec) kl.pb(p); // //kl.insert(end(kl), AI(vec)); // for (const auto &[_, vec] : out[a]) // for (const auto &p : vec) kl.pb(p); // //kl.insert(end(kl), AI(vec)); in[a].clear(), out[a].clear(); for (auto [x, y] : kl) rm(x, y); ans += 2ll * sz[a] * sz[b] + 1ll * cntin[b] * sz[a]; sz[b] += sz[a], g[a] = b; for (auto [x, y] : kl) add_edge(x, y); } int32_t main() { ios_base::sync_with_stdio(0), cin.tie(0); cin >> n >> m; vector<pair<int,int>> alle(m); for (auto &[a, b] : alle) cin >> a >> b; vector<ll> res; init(); for (auto [a, b] : alle) { add_edge(a, b); res.pb(ans); } for (auto i : res) cout << i << '\n'; }

Compilation message (stderr)

joitter2.cpp: In function 'void ad(int, int)':
joitter2.cpp:14:17: warning: statement has no effect [-Wunused-value]
   14 | #define DE(...) 0
      |                 ^
joitter2.cpp:51:2: note: in expansion of macro 'DE'
   51 |  DE("ad", x, u);
      |  ^~
joitter2.cpp: In function 'void add_edge(int, int)':
joitter2.cpp:14:17: warning: statement has no effect [-Wunused-value]
   14 | #define DE(...) 0
      |                 ^
joitter2.cpp:84:2: note: in expansion of macro 'DE'
   84 |  DE(a, b);
      |  ^~
joitter2.cpp:14:17: warning: statement has no effect [-Wunused-value]
   14 | #define DE(...) 0
      |                 ^
joitter2.cpp:89:3: note: in expansion of macro 'DE'
   89 |   DE(g, x, y);
      |   ^~
joitter2.cpp:88:8: warning: structured binding declaration set but not used [-Wunused-but-set-variable]
   88 |   auto [g, x, y] = *it;
      |        ^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...