結果

問題 No.202 1円玉投げ
ユーザー outlineoutline
提出日時 2021-02-14 17:13:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 5,000 ms
コード長 2,216 bytes
コンパイル時間 1,389 ms
コンパイル使用メモリ 143,192 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-12-22 12:07:33
合計ジャッジ時間 10,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 398 ms
11,392 KB
testcase_01 AC 457 ms
11,520 KB
testcase_02 AC 5 ms
6,144 KB
testcase_03 AC 5 ms
6,016 KB
testcase_04 AC 5 ms
6,016 KB
testcase_05 AC 28 ms
6,400 KB
testcase_06 AC 426 ms
9,984 KB
testcase_07 AC 468 ms
10,496 KB
testcase_08 AC 500 ms
10,624 KB
testcase_09 AC 242 ms
8,704 KB
testcase_10 AC 100 ms
7,168 KB
testcase_11 AC 199 ms
8,320 KB
testcase_12 AC 210 ms
8,320 KB
testcase_13 AC 115 ms
7,296 KB
testcase_14 AC 37 ms
6,400 KB
testcase_15 AC 244 ms
8,576 KB
testcase_16 AC 379 ms
11,520 KB
testcase_17 AC 401 ms
11,392 KB
testcase_18 AC 387 ms
11,520 KB
testcase_19 AC 226 ms
8,320 KB
testcase_20 AC 379 ms
9,600 KB
testcase_21 AC 221 ms
8,448 KB
testcase_22 AC 9 ms
6,144 KB
testcase_23 AC 8 ms
6,144 KB
testcase_24 AC 7 ms
6,016 KB
testcase_25 AC 7 ms
6,016 KB
testcase_26 AC 7 ms
6,144 KB
testcase_27 AC 7 ms
6,144 KB
testcase_28 AC 7 ms
6,144 KB
testcase_29 AC 6 ms
6,016 KB
testcase_30 AC 8 ms
6,144 KB
testcase_31 AC 7 ms
5,888 KB
testcase_32 AC 10 ms
6,144 KB
testcase_33 AC 8 ms
6,144 KB
testcase_34 AC 9 ms
6,272 KB
testcase_35 AC 394 ms
11,520 KB
testcase_36 AC 398 ms
11,520 KB
testcase_37 AC 529 ms
10,880 KB
testcase_38 AC 386 ms
11,520 KB
testcase_39 AC 6 ms
6,016 KB
testcase_40 AC 5 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N;
    cin >> N;
    vector<int> X(N), Y(N);
    for(int i = 0; i < N; ++i)  cin >> X[i] >> Y[i];

    vector<set<int>> ys(20001);
    for(int i = 0; i <= 20000; ++i){
        ys[i].emplace(-1000);
        ys[i].emplace(21000);
    }
    
    int ans = 0;
    for(int i = 0; i < N; ++i){
        bool ok = true;
        for(int x = max(0, X[i] - 19); x <= min(20000, X[i] + 19); ++x){
            int dx = X[i] - x;
            int lb = -1000, ub = Y[i];
            while(ub - lb > 1){
                int mid = (lb + ub) / 2;
                int dy = abs(mid - Y[i]);
                if(dx * dx + dy * dy >= 400)    lb = mid;
                else    ub = mid;
            }
            int low = lb;
            lb = Y[i], ub = 21000;
            while(ub - lb > 1){
                int mid = (lb + ub) / 2;
                int dy = abs(mid - Y[i]);
                if(dx * dx + dy * dy >= 400)    ub = mid;
                else    lb = mid;
            }
            int high = ub;
            if(*ys[x].upper_bound(low) < high){
                ok = false;
                break;
            }
        }
        if(ok){
            ys[X[i]].emplace(Y[i]);
            ans += 1;
        }
    }

    cout << ans << endl;

    return 0;
}
0