結果
問題 | No.1390 Get together |
ユーザー | khmonos |
提出日時 | 2021-02-12 22:50:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,235 bytes |
コンパイル時間 | 1,175 ms |
コンパイル使用メモリ | 92,632 KB |
実行使用メモリ | 11,680 KB |
最終ジャッジ日時 | 2024-07-19 23:54:18 |
合計ジャッジ時間 | 5,894 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 142 ms
5,376 KB |
testcase_04 | AC | 93 ms
5,376 KB |
testcase_05 | AC | 135 ms
5,376 KB |
testcase_06 | AC | 89 ms
5,376 KB |
testcase_07 | AC | 78 ms
5,376 KB |
testcase_08 | AC | 85 ms
5,376 KB |
testcase_09 | AC | 186 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#include <iostream> #include <utility> #include <vector> #include <algorithm> #include <set> int main() { int n, m; std::vector< std::pair<int, int> > A; std::cin >> n >> m; A.reserve(n); for (int i = 0; i < n; i++) { int b, c; std::cin >> b >> c; A.emplace_back(b, c); } std::sort(A.begin(), A.end(), [](std::pair<int, int>& a, std::pair<int, int>& b) { return a.second == b.second ? a.first < b.first : a.second < b.second; }); std::set<std::pair<int, int>> C; for (int i = 0; i < n - 1; i++) { if (A[i].second == A[i+1].second && A[i].first != A[i+1].first) { int x1 = A[i].first, x2 = A[i+1].first; for (auto& a : A) { if (a.first == x1) { a.first = x2; } } std::sort(A.begin(), A.end(), [](std::pair<int, int>& a, std::pair<int, int>& b) { return a.second == b.second ? a.first < b.first : a.second < b.second; }); C.emplace(x1, x2); } } //std::cout << ((C.size() >= m) ? m - 1 : C.size()) << std::endl; std::cout << C.size() << std::endl; return 0; }