結果

問題 No.202 1円玉投げ
ユーザー simansiman
提出日時 2016-03-27 23:54:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 1,280 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 77,076 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-06-01 20:44:18
合計ジャッジ時間 3,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
29,824 KB
testcase_01 AC 95 ms
29,952 KB
testcase_02 AC 11 ms
26,956 KB
testcase_03 AC 12 ms
26,940 KB
testcase_04 AC 11 ms
26,940 KB
testcase_05 AC 17 ms
27,008 KB
testcase_06 AC 79 ms
29,056 KB
testcase_07 AC 87 ms
29,440 KB
testcase_08 AC 89 ms
29,548 KB
testcase_09 AC 54 ms
28,288 KB
testcase_10 AC 29 ms
27,564 KB
testcase_11 AC 47 ms
28,064 KB
testcase_12 AC 47 ms
28,144 KB
testcase_13 AC 30 ms
27,524 KB
testcase_14 AC 17 ms
27,136 KB
testcase_15 AC 52 ms
28,240 KB
testcase_16 AC 75 ms
29,952 KB
testcase_17 AC 72 ms
29,920 KB
testcase_18 AC 74 ms
30,032 KB
testcase_19 AC 49 ms
28,160 KB
testcase_20 AC 73 ms
28,840 KB
testcase_21 AC 49 ms
28,144 KB
testcase_22 AC 12 ms
26,880 KB
testcase_23 AC 12 ms
26,996 KB
testcase_24 AC 12 ms
26,880 KB
testcase_25 AC 12 ms
26,796 KB
testcase_26 AC 12 ms
26,880 KB
testcase_27 AC 13 ms
26,880 KB
testcase_28 AC 12 ms
26,920 KB
testcase_29 AC 11 ms
26,752 KB
testcase_30 AC 13 ms
26,680 KB
testcase_31 AC 12 ms
26,992 KB
testcase_32 AC 12 ms
27,008 KB
testcase_33 AC 11 ms
26,836 KB
testcase_34 AC 11 ms
26,696 KB
testcase_35 AC 72 ms
30,080 KB
testcase_36 AC 77 ms
30,080 KB
testcase_37 AC 94 ms
29,412 KB
testcase_38 AC 78 ms
29,952 KB
testcase_39 AC 12 ms
26,752 KB
testcase_40 AC 11 ms
26,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <limits.h>
#include <time.h>
#include <string>
#include <string.h>
#include <sstream>
#include <set>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <stack>
#include <queue>

using namespace std;

typedef long long ll;

struct Coord {
  int y;
  int x;
  
  Coord(int y = -1, int x = -1){
    this->y = y;
    this->x = x;
  }
};

vector<Coord> field[1001][1001];

int main(){
  int n;
  cin >> n;

  int x, y;
  int cnt = 0;
  for(int i = 0; i < n; i++){
    cin >> x >> y;

    int cy = y/20;
    int cx = x/20;
    bool success = true;

    for(int curY = cy-1; curY <= cy+1 && success; curY++){
      for(int curX = cx-1; curX <= cx+1 && success; curX++){
        if(curY < 0 || 1001 <= curY || curX < 0 || 1001 <= curX) continue;
        int size = field[curY][curX].size();

        for(int j = 0; j < size; j++){
          Coord coord = field[curY][curX][j];

          int dy = coord.y - y;
          int dx = coord.x - x;
          int dist = dy*dy + dx*dx;

          if(dist < 400){
            success = false;
          }
        }
      }
    }

    if(success){
      field[cy][cx].push_back(Coord(y,x));
      cnt++;
    }
  }

  cout << cnt << endl;

  return 0;
}
0