結果
問題 | No.2923 Mayor's Job |
ユーザー | elphe |
提出日時 | 2024-10-24 16:26:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 1,001 bytes |
コンパイル時間 | 1,283 ms |
コンパイル使用メモリ | 88,480 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-24 16:27:02 |
合計ジャッジ時間 | 2,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 10 ms
6,816 KB |
testcase_04 | AC | 5 ms
6,820 KB |
testcase_05 | AC | 7 ms
6,816 KB |
testcase_06 | AC | 11 ms
6,820 KB |
testcase_07 | AC | 6 ms
6,820 KB |
testcase_08 | AC | 5 ms
6,820 KB |
testcase_09 | AC | 7 ms
6,820 KB |
testcase_10 | AC | 6 ms
6,824 KB |
testcase_11 | AC | 5 ms
6,820 KB |
testcase_12 | AC | 5 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,820 KB |
ソースコード
#include <iostream> #include <cstdint> #include <vector> #include <tuple> #include <algorithm> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); uint16_t N, i, j; int32_t K; cin >> N >> K; vector<tuple<uint32_t, int32_t, int32_t>> shrines(N); for (i = 0; i != N; ++i) cin >> get<0>(shrines[i]); for (i = 0; i != N; ++i) cin >> get<1>(shrines[i]) >> get<2>(shrines[i]); sort(shrines.begin(), shrines.end()); uint16_t count_deleted = 0; vector<bool> is_deleted(N, false); for (i = 0; i != N; ++i) if (!is_deleted[i]) for (j = 0; j != i; ++j) if (!is_deleted[j] && get<0>(shrines[i]) != get<0>(shrines[j]) && static_cast<int64_t>(get<1>(shrines[i]) - get<1>(shrines[j])) * (get<1>(shrines[i]) - get<1>(shrines[j])) + static_cast<int64_t>(get<2>(shrines[i]) - get<2>(shrines[j])) * (get<2>(shrines[i]) - get<2>(shrines[j])) <= static_cast<int64_t>(K) * K) is_deleted[j] = true, ++count_deleted; cout << N - count_deleted << '\n'; return 0; }