結果

問題 No.202 1円玉投げ
ユーザー kk
提出日時 2021-03-08 03:15:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 809 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 201,276 KB
実行使用メモリ 254,304 KB
最終ジャッジ日時 2024-06-01 21:43:56
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
254,176 KB
testcase_01 AC 85 ms
254,172 KB
testcase_02 AC 58 ms
253,316 KB
testcase_03 AC 59 ms
253,348 KB
testcase_04 AC 59 ms
253,920 KB
testcase_05 AC 60 ms
253,688 KB
testcase_06 AC 82 ms
254,016 KB
testcase_07 AC 83 ms
254,176 KB
testcase_08 AC 84 ms
254,168 KB
testcase_09 AC 73 ms
253,748 KB
testcase_10 AC 65 ms
253,528 KB
testcase_11 AC 71 ms
253,704 KB
testcase_12 AC 71 ms
253,824 KB
testcase_13 AC 66 ms
253,532 KB
testcase_14 AC 64 ms
253,512 KB
testcase_15 AC 74 ms
253,604 KB
testcase_16 AC 78 ms
254,304 KB
testcase_17 AC 81 ms
254,156 KB
testcase_18 AC 80 ms
254,172 KB
testcase_19 AC 73 ms
253,924 KB
testcase_20 AC 79 ms
254,012 KB
testcase_21 AC 74 ms
253,724 KB
testcase_22 AC 58 ms
253,432 KB
testcase_23 AC 61 ms
253,432 KB
testcase_24 AC 59 ms
253,496 KB
testcase_25 AC 59 ms
253,456 KB
testcase_26 AC 58 ms
253,788 KB
testcase_27 AC 58 ms
253,348 KB
testcase_28 AC 57 ms
253,788 KB
testcase_29 AC 59 ms
253,340 KB
testcase_30 AC 59 ms
253,412 KB
testcase_31 AC 59 ms
253,532 KB
testcase_32 AC 59 ms
253,920 KB
testcase_33 AC 58 ms
253,784 KB
testcase_34 AC 60 ms
253,316 KB
testcase_35 AC 80 ms
254,084 KB
testcase_36 AC 80 ms
254,172 KB
testcase_37 AC 85 ms
254,164 KB
testcase_38 AC 79 ms
254,300 KB
testcase_39 AC 59 ms
253,436 KB
testcase_40 AC 59 ms
253,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int bd[8000][8000];
int xs[100000];
int ys[100000];

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

  memset(bd, -1, sizeof(bd));  
  int n;
  cin >> n;

  int ret = 0;
  for (int i = 0; i < n; i++) {
    cin >> xs[i] >> ys[i];

    bool hit = false;
    for (int bx = xs[i]/14 - 2; bx <= xs[i]/14 + 2; bx++) {
      for (int by = ys[i]/14 - 2; by <= ys[i]/14 + 2; by++) {
        if (bx < 0 || by < 0) continue;
        int j = bd[bx][by];
        if (j != -1) {
          int dist = (xs[i] - xs[j]) * (xs[i] - xs[j]) + (ys[i] - ys[j]) * (ys[i] - ys[j]);
          if (dist < 20 * 20)
            hit = true;
        }
      }
    }
    if (!hit) {
      ++ret;
      bd[xs[i]/14][ys[i]/14] = i;
    }
  }

  cout << ret << endl;
  
  return 0;
}
0