結果

問題 No.202 1円玉投げ
ユーザー tailstails
提出日時 2015-04-19 20:23:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 158,716 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-12-22 05:57:30
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
8,320 KB
testcase_01 AC 94 ms
26,880 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 28 ms
23,808 KB
testcase_06 AC 85 ms
27,008 KB
testcase_07 AC 91 ms
27,008 KB
testcase_08 AC 92 ms
26,880 KB
testcase_09 AC 64 ms
27,008 KB
testcase_10 AC 43 ms
26,880 KB
testcase_11 AC 55 ms
27,008 KB
testcase_12 AC 56 ms
27,008 KB
testcase_13 AC 45 ms
26,880 KB
testcase_14 AC 29 ms
24,960 KB
testcase_15 AC 62 ms
26,752 KB
testcase_16 AC 60 ms
6,656 KB
testcase_17 AC 63 ms
10,624 KB
testcase_18 AC 62 ms
10,496 KB
testcase_19 AC 60 ms
26,752 KB
testcase_20 AC 83 ms
26,880 KB
testcase_21 AC 61 ms
26,880 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 7 ms
7,296 KB
testcase_27 AC 7 ms
7,424 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 6 ms
7,168 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 10 ms
10,112 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 64 ms
9,856 KB
testcase_36 AC 62 ms
5,632 KB
testcase_37 AC 95 ms
26,880 KB
testcase_38 AC 66 ms
9,728 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int grid[1002][1002][6];

int sq(int x){
  return x*x;
}

bool check1(int x0,int y0,int* g){
  for(int i=0;g[i];++i){
    int x1=g[i]>>1&0x7fff;
    int y1=g[i]>>16&0x7fff;
    if(sq(x1-x0)+sq(y1-y0)<400){
      return false;
    }
  }
  return true;
}

bool check(int x,int y){
  return check1(x,y,grid[y/20][x/20])&&
    check1(x,y,grid[y/20][x/20+1])&&
    check1(x,y,grid[y/20+1][x/20])&&
    check1(x,y,grid[y/20+1][x/20+1]);
}

void add1(int x,int y,int* g){
  int i=0;
  while(g[i])++i;
  g[i]=1|x<<1|y<<16;
}

void add(int x,int y){
  add1(x,y,grid[y/20][x/20]);
  add1(x,y,grid[y/20][x/20+1]);
  add1(x,y,grid[y/20+1][x/20]);
  add1(x,y,grid[y/20+1][x/20+1]);
}

int main() {
  int count=0;
  int n;
  std::cin >> n;
  for(int i=0;i<n;++i){
    int x,y;
    std::cin >> x >> y;
    if(check(x,y)){
      add(x,y);
      ++count;
    }
  }
  std::cout << count << std::endl;
  return 0;
}
0