結果

問題 No.202 1円玉投げ
ユーザー BantakoBantako
提出日時 2018-05-31 19:28:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 633 ms / 5,000 ms
コード長 1,029 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 176,704 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-06-01 21:19:18
合計ジャッジ時間 10,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
9,472 KB
testcase_01 AC 633 ms
9,600 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 14 ms
6,944 KB
testcase_06 AC 492 ms
8,192 KB
testcase_07 AC 564 ms
8,704 KB
testcase_08 AC 576 ms
8,704 KB
testcase_09 AC 264 ms
6,944 KB
testcase_10 AC 74 ms
6,944 KB
testcase_11 AC 193 ms
6,944 KB
testcase_12 AC 201 ms
6,944 KB
testcase_13 AC 85 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 243 ms
6,944 KB
testcase_16 AC 157 ms
9,600 KB
testcase_17 AC 325 ms
9,600 KB
testcase_18 AC 328 ms
9,728 KB
testcase_19 AC 222 ms
6,944 KB
testcase_20 AC 416 ms
7,808 KB
testcase_21 AC 218 ms
6,944 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 AC 4 ms
6,944 KB
testcase_35 AC 277 ms
9,600 KB
testcase_36 AC 258 ms
9,600 KB
testcase_37 AC 625 ms
8,960 KB
testcase_38 AC 295 ms
9,600 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
int INF = (1LL << 30) - 1;
int MOD = 1e9+7;
main(){
    int N;
    cin >> N;
    vector< P > V(N);
    vector<set<int> > X(20010);
    rep(i,N){
        int a,b;
        cin >> a >> b;
        V[i] = P(a,b);
    }
    int cnt = 0;
    rep(i,N){
        auto p = V[i];
        int x = p.first, y = p.second;
        bool ok = 1;
        //(x,y)との距離の2乗が400未満となる点を探す
        for(int j = max(0,x-20);j <= x+20;j++){
            for(int k = max(0,y-20);k <= y+20;k++){
                ll r = (x - j) * (x - j) + (y - k) * (y - k);
                //cout << j << " " << k << endl;
                if(X[j].count(k) && r < 400){
                    ok = 0;
                    j = x+20;
                    break;
                }
            }
        }
        if(ok){
            X[x].insert(y);
            cnt++;
        }
    }
    cout << cnt << endl;
}
0