結果
問題 | No.2288 Somen Sliders |
ユーザー | みここ |
提出日時 | 2023-03-08 02:10:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,921 bytes |
コンパイル時間 | 1,035 ms |
コンパイル使用メモリ | 96,740 KB |
実行使用メモリ | 16,028 KB |
最終ジャッジ日時 | 2024-11-17 19:57:10 |
合計ジャッジ時間 | 5,584 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 93 ms
10,824 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | RE | - |
ソースコード
#include <algorithm> #include <iostream> #include <cassert> #include <queue> using namespace std; typedef long long ll; template <typename T = int> struct stable_matching { public: struct Edge { int a, b; int preference_a, preference_b; // The smaller the value, the higher the priority. bool is_matched; T cost; int id; bool operator<(const Edge &e) const { return preference_a < e.preference_a; } }; stable_matching() {} stable_matching(int p, int q) : p(p), q(q), m(0) { g.resize(p); } void add_directed_edge(int a, int b, int preference_a, int preference_b, T cost = 1) { assert(0 <= a && a < p); assert(0 <= b && b < q); epos.push_back(std::pair<int, int>(a, (int)g[a].size())); g[a].push_back((Edge){a, b, preference_a, preference_b, false, cost, m++}); } void get_stable_matching() { for (int a = 0; a < p; a++) { if (!std::is_sorted(g[a].begin(), g[a].end())) { std::sort(g[a].begin(), g[a].end()); } } std::vector<std::pair<int, int>> match(q, std::pair<int, int>(-1, -1)); std::vector<int> nx(p, 0); std::queue<int> que; for (int a = 0; a < p; a++) { que.push(a); } while (que.size()) { int a = que.front(); que.pop(); for (int &i = nx[a]; i < (int)g[a].size(); i++) { int b = g[a][i].b; int x = match[b].first; int j = match[b].second; if (x >= 0 && g[a][i].preference_b < g[x][j].preference_b) { g[x][j].is_matched = false; nx[x]++; que.push(x); x = -1; } if (x == -1) { g[a][i].is_matched = true; match[b] = std::pair<int, int>(a, i); break; } } } } std::vector<Edge> get_matching_edges() { std::vector<Edge> res; for(int i = 0; i < m; i++) { Edge e = g[epos[i].first][epos[i].second]; if(e.is_matched) { res.push_back(e); } } return res; } Edge &get_edge(int id) { assert(id < m); return g[epos[id].first][epos[id].second]; } int get_size() { return p + q; } int get_left_size() { return p; } int get_right_size() { return q; } int get_edge_size() { return m; } private: int p, q, m; std::vector<std::vector<Edge>> g; std::vector<std::pair<int, int>> epos; }; void solve() { int n, x, y; cin >> n >> x >> y; int p[200005], d[200005]; for (int u = 0; u < n; u++) { p[u] = -1; } int k[200005]; for (int i = 0; i < x; i++) { cin >> k[i]; for (int j = 0; j <= k[i]; j++) { int u; cin >> u; u--; p[u] = i; d[u] = j; } } stable_matching<int> g(y, x); int m = 0; for (int i = 0; i < y; i++) { int l; cin >> l; for (int j = 0; j <= l; j++) { int v; cin >> v; v--; if (p[v] >= 0) { g.add_directed_edge(i, p[v], -j, d[v]); } } } g.get_stable_matching(); int ans = 0; for (int i = 0; i < x; i++) { ans += k[i]; } auto M = g.get_matching_edges(); for (auto &e : M) { ans -= k[e.b] - e.preference_b; } cout << ans << endl; } int main() { solve(); }