Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*author* Priyanshu Shrivastav (from IIT Palakkad) *
- * *_ __ ___ _ ______ ___ _ ____ ___ ___| |_ *
- * | '_ ` _ \| '__/ __/ _ \| '_ \ \ / / |/ __| __| *
- * | | | | | | | | (_| (_) | | | \ V /| | (__| |_ *
- * |_| |_| |_|_|(_)___\___/|_| |_|\_/ |_|\___|\__| *
- When I wrote this, only God and I understood what I was doing
- ** * * * * * * * Now, only God knows * * * * * * */
- #include <bits/stdc++.h>
- using namespace std;
- #pragma GCC optimize ("Ofast")
- #pragma GCC optimize ("unroll-loops")
- #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
- #define IOS ios_base::sync_with_stdio(false); cin.tie (nullptr)
- #define PREC cout.precision (10); cout << fixed
- #define bg(x) " [ " << #x << " : " << (x) << " ]"
- #define x first
- #define y second
- #define debug(args...) { \
- string _s = #args; replace(_s.begin(), _s.end(), ',', ' ');\
- stringstream _ss(_s); istream_iterator<string> _it(_ss); err(_it, args); \
- }
- void err(istream_iterator<string> it) { it->empty();
- cerr << " (Line : " << __LINE__ << ")" << '\n';
- }
- template<typename T, typename... Args>
- void err(istream_iterator<string> it, T a, Args... args) {
- cerr << " [ " << *it << " : " << a << " ] "<< ' ';
- err(++it, args...);
- }
- const int N = 2 * 505;
- struct info {
- int height;
- string fav_music, fav_sport;
- inline bool is_couple (const info& o) {
- return abs(height - o.height) <= 40 &&
- fav_music == o.fav_music &&
- fav_sport != o.fav_sport;
- }
- };
- vector <info> males, females;
- bool vis[N];
- int match[N];
- vector < vector <int> > Adj;
- int n, nl, nr; // first 0, ..., nl - 1 vertices in left nl, ..., nr - 1 in right
- void init() {
- n = nl + nr;
- assert(n);
- Adj.assign(n, vector <int> ());
- for (int i = 0; i < n; ++i)
- vis[i] = false, match[i] = -1;
- }
- inline void add_edge(int u, int v) {
- Adj[u].push_back(v);
- // Adj[v].push_back(u);
- }
- bool augment(int u) {
- if (vis[u]) return false;
- vis[u] = true;
- for (int v : Adj[u]) {
- if (match[v] == -1 || augment(match[v])) {
- match[v] = u;
- return true;
- }
- }
- return false;
- }
- int MCBM() {
- assert (nl + nr == n);
- int mcbm = 0;
- for (int u = 0; u < nl; ++u) { // in left set
- fill(vis, vis + n, false);
- mcbm += augment(u);
- }
- return mcbm;
- }
- void read_init() {
- males.clear();
- females.clear();
- }
- void solve() {
- int mcbm = MCBM();
- cout << n - mcbm << '\n';
- }
- void read() {
- read_init();
- cin >> n;
- nl = 0, nr = 0;
- int h;
- string type, music, sport;
- for (int i = 0; i < n; ++i) {
- cin >> h >> type >> music >> sport;
- if (type == "M") males.push_back({h, music, sport}), ++nl;
- else if (type == "F") females.push_back({h, music, sport}), ++nr;
- else assert(false);
- }
- init();
- for (int i = 0; i < nl; ++i) {
- for (int j = 0; j < nr; ++j) {
- if (males[i].is_couple(females[j]))
- add_edge (i, j);
- }
- }
- }
- signed main() {
- IOS; PREC;
- int tc; cin >> tc;
- while (tc--) {
- read();
- solve();
- }
- return EXIT_SUCCESS;
- }
Add Comment
Please, Sign In to add comment