結果

問題 No.202 1円玉投げ
ユーザー kk
提出日時 2021-03-08 03:01:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,965 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 208,344 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-01 21:44:10
合計ジャッジ時間 12,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
8,192 KB
testcase_01 AC 131 ms
8,064 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 216 ms
6,940 KB
testcase_07 AC 262 ms
7,168 KB
testcase_08 AC 271 ms
7,168 KB
testcase_09 AC 85 ms
6,940 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 62 ms
6,940 KB
testcase_12 AC 64 ms
6,944 KB
testcase_13 AC 22 ms
6,940 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 80 ms
6,940 KB
testcase_16 AC 82 ms
8,192 KB
testcase_17 AC 1,189 ms
8,192 KB
testcase_18 AC 1,228 ms
8,064 KB
testcase_19 AC 74 ms
6,940 KB
testcase_20 AC 171 ms
6,944 KB
testcase_21 AC 69 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 1,965 ms
8,192 KB
testcase_36 AC 170 ms
8,064 KB
testcase_37 AC 303 ms
7,552 KB
testcase_38 AC 1,932 ms
8,192 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;

  set<pair<int, int> > st;
  for (int i = 0; i < n; i++) {
    int x, y;
    cin >> x >> y;
    bool hit = false;
    if (st.size()) {
      auto itr = st.lower_bound(make_pair(x - 20, 0));
      while (itr != st.end()) {
        int xt = itr->first;
        int yt = itr->second;
        if (xt > x + 20)
          break;
        int dist = (x - xt) * (x - xt) + (y - yt) * (y - yt);
        if (dist < 20 * 20)
          hit = true;
        ++itr;
      }
    }
    if (!hit)
      st.emplace(x, y);
  }

  cout << st.size() << endl;
  
  return 0;
}
0