結果
問題 | No.1285 ゴミ捨て |
ユーザー | kyo1 |
提出日時 | 2020-11-14 03:21:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,527 bytes |
コンパイル時間 | 2,186 ms |
コンパイル使用メモリ | 207,528 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 22:41:20 |
合計ジャッジ時間 | 3,412 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 10 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 5 ms
5,376 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 5 ms
5,376 KB |
testcase_21 | AC | 6 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; class DisjointSet { private: class Node { friend DisjointSet; std::size_t parent; std::size_t size; Node(const std::size_t parent, const std::size_t size) : parent(parent), size(size) {} }; std::vector<Node> nodes; public: explicit DisjointSet(const std::size_t n) : nodes(n, Node(n, 1)) {} std::size_t size() const { return nodes.size(); } std::size_t size(const std::size_t x) { return nodes[root(x)].size; } std::size_t root(const std::size_t x) { if (nodes[x].parent == size()) return x; return nodes[x].parent = root(nodes[x].parent); } bool is_same(const std::size_t x, const std::size_t y) { return root(x) == root(y); } bool unite(const std::size_t x, const std::size_t y) { std::size_t rx = root(x), ry = root(y); if (rx == ry) return false; if (nodes[rx].size < nodes[ry].size) std::swap(rx, ry); nodes[rx].size += nodes[ry].size; nodes[ry].parent = rx; return true; } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; vector<int> A(N); for (auto &&e : A) { cin >> e; } sort(A.begin(), A.end()); int res = 0; vector<bool> B(N, false); while (true) { int i = 0; while (i < N && B[i]) { i++; } if (i == N) break; B[i] = true; res++; int j = i + 1; while (j < N) { if (A[i] + 1 < A[j]) { B[j] = true; i = j; } j++; } } cout << res << '\n'; return 0; }