結果

問題 No.202 1円玉投げ
ユーザー 0w10w1
提出日時 2016-12-05 14:43:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,879 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 168,796 KB
実行使用メモリ 35,232 KB
最終ジャッジ日時 2023-08-23 23:30:17
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
28,976 KB
testcase_01 AC 49 ms
35,108 KB
testcase_02 AC 10 ms
20,528 KB
testcase_03 AC 11 ms
20,412 KB
testcase_04 AC 10 ms
20,356 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 34 ms
33,512 KB
testcase_17 AC 35 ms
24,796 KB
testcase_18 AC 34 ms
24,772 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 14 ms
33,144 KB
testcase_23 AC 13 ms
33,336 KB
testcase_24 AC 11 ms
20,548 KB
testcase_25 AC 10 ms
20,528 KB
testcase_26 AC 10 ms
20,356 KB
testcase_27 AC 11 ms
20,384 KB
testcase_28 AC 10 ms
20,296 KB
testcase_29 AC 11 ms
20,356 KB
testcase_30 AC 14 ms
33,156 KB
testcase_31 AC 10 ms
22,656 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 11 ms
20,896 KB
testcase_35 AC 33 ms
21,960 KB
testcase_36 AC 38 ms
33,692 KB
testcase_37 WA -
testcase_38 AC 34 ms
24,736 KB
testcase_39 AC 11 ms
22,844 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef pair< int, int > pii;
typedef vector< int > vi;
typedef vector< vi > vvi;
typedef vector< ll > vl;
typedef vector< vl > vvl;
typedef vector< pii > vp;
typedef vector< vp > vvp;
typedef vector< string > vs;
typedef vector< double > vd;
typedef vector< vd > vvd;

template< class T1, class T2 >
int upmin( T1 &x, T2 v ){
  if( x > v ){
    x = v;
    return 1;
  }
  return 0;
}

template< class T1, class T2 >
int upmax( T1 &x, T2 v ){
  if( x < v ){
    x = v;
    return 1;
  }
  return 0;
}

const int INF = 0x3f3f3f3f;

int N;
vi X, Y;

void init(){
  cin >> N;
  X = Y = vi( N );
  for( int i = 0; i < N; ++i )
    cin >> X[ i ] >> Y[ i ];
}

int cx[ 2000 + 1 ][ 2000 + 1 ];
int cy[ 2000 + 1 ][ 2000 + 1 ];

int eu_dis2( int x, int y, int a, int b ){
  int dtx = x - a;
  int dty = y - b;
  return dtx * dtx + dty * dty;
}

void preprocess(){
  memset( cx, -1, sizeof( cx ) );
  for( int i = 0; i < N; ++i ){
    int x = X[ i ], y = Y[ i ];
    static const int dx[] = { 0, 1, 0, -1, 1, 1, -1, -1 };
    static const int dy[] = { 1, 0, -1, 0, 1, -1, 1, -1 };
    int ng = 0;
    for( int t = 1; t <= 2; ++t ){
      for( int di = 0; di < 8; ++di ){
        int nx = x / 10 + t * dx[ di ];
        int ny = y / 10 + t * dy[ di ];
        if( nx < 0 or nx > 2000 or ny < 0 or ny > 2000 ) continue;
        if( cx[ nx ][ ny ] == -1 ) continue;
        if( eu_dis2( x, y, cx[ nx ][ ny ], cy[ nx ][ ny ] ) >= 400 ) continue;
        ng = 1;
      }
    }
    if( ng ) continue;
    cx[ x / 10 ][ y / 10 ] = x;
    cy[ x / 10 ][ y / 10 ] = y;
  }
}

void solve(){
  int ans = 0;
  for( int i = 0; i <= 2000; ++i )
    for( int j = 0; j <= 2000; ++j )
      ans += cx[ i ][ j ] != -1;
  cout << ans << endl;
}

signed main(){
  ios::sync_with_stdio( 0 );
  init();
  preprocess();
  solve();
  return 0;
}
0