結果

問題 No.202 1円玉投げ
ユーザー simansiman
提出日時 2016-03-27 23:54:24
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 93 ms / 5,000 ms
コード長 1,280 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 77,220 KB
実行使用メモリ 30,116 KB
最終ジャッジ日時 2024-12-22 10:10:20
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
30,036 KB
testcase_01 AC 89 ms
29,920 KB
testcase_02 AC 10 ms
26,908 KB
testcase_03 AC 11 ms
26,856 KB
testcase_04 AC 11 ms
26,852 KB
testcase_05 AC 16 ms
26,968 KB
testcase_06 AC 78 ms
28,928 KB
testcase_07 AC 83 ms
29,324 KB
testcase_08 AC 82 ms
29,216 KB
testcase_09 AC 53 ms
28,392 KB
testcase_10 AC 25 ms
27,344 KB
testcase_11 AC 42 ms
28,052 KB
testcase_12 AC 44 ms
28,144 KB
testcase_13 AC 29 ms
27,556 KB
testcase_14 AC 16 ms
27,224 KB
testcase_15 AC 50 ms
28,108 KB
testcase_16 AC 76 ms
29,952 KB
testcase_17 AC 74 ms
30,012 KB
testcase_18 AC 76 ms
30,004 KB
testcase_19 AC 48 ms
28,268 KB
testcase_20 AC 71 ms
28,872 KB
testcase_21 AC 48 ms
28,224 KB
testcase_22 AC 11 ms
26,924 KB
testcase_23 AC 13 ms
26,868 KB
testcase_24 AC 12 ms
26,828 KB
testcase_25 AC 11 ms
26,868 KB
testcase_26 AC 12 ms
26,788 KB
testcase_27 AC 10 ms
26,876 KB
testcase_28 AC 13 ms
26,960 KB
testcase_29 AC 12 ms
26,848 KB
testcase_30 AC 12 ms
26,836 KB
testcase_31 AC 11 ms
26,824 KB
testcase_32 AC 10 ms
26,912 KB
testcase_33 AC 13 ms
26,824 KB
testcase_34 AC 12 ms
26,684 KB
testcase_35 AC 75 ms
29,812 KB
testcase_36 AC 80 ms
29,856 KB
testcase_37 AC 93 ms
29,672 KB
testcase_38 AC 78 ms
30,116 KB
testcase_39 AC 10 ms
26,776 KB
testcase_40 AC 11 ms
26,796 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