結果

問題 No.202 1円玉投げ
ユーザー hogeover30hogeover30
提出日時 2015-05-12 02:12:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 989 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 72,208 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-12-22 09:03:03
合計ジャッジ時間 5,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
8,064 KB
testcase_01 AC 174 ms
9,728 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 235 ms
8,576 KB
testcase_07 AC 271 ms
8,960 KB
testcase_08 AC 268 ms
9,088 KB
testcase_09 AC 114 ms
7,168 KB
testcase_10 AC 31 ms
6,816 KB
testcase_11 AC 88 ms
6,912 KB
testcase_12 AC 91 ms
6,912 KB
testcase_13 AC 38 ms
6,820 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 114 ms
7,168 KB
testcase_16 AC 34 ms
8,064 KB
testcase_17 AC 55 ms
8,064 KB
testcase_18 AC 55 ms
7,936 KB
testcase_19 AC 109 ms
6,912 KB
testcase_20 AC 207 ms
8,192 KB
testcase_21 AC 104 ms
6,912 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 52 ms
7,936 KB
testcase_36 AC 49 ms
8,064 KB
testcase_37 AC 311 ms
9,088 KB
testcase_38 AC 55 ms
8,064 KB
testcase_39 AC 1 ms
6,820 KB
testcase_40 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <map>
using namespace std;
bool is_overlap(int x0, int y0, int x1, int y1)
{
#define sq(x) ((x)*(x))
#define dist(a, b, c, d) (sq(a-c)+sq(b-d))
    return dist(x0, y0, x1, y1)<400;
}

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n;
    while (cin>>n) {
        map<int, set<int>> a;
        for(int $=0;$<n;++$) {
            int x, y; cin>>x>>y;
            bool overlap=false;
            for(auto i=a.lower_bound(x-20);i!=a.end();++i) {
                if (i->first-20>=x+20) break;
                auto& b=i->second;
                for(auto j=b.lower_bound(y-20);j!=b.end();++j) {
                    if (*j-20>=y+20) break;
                    if (overlap=is_overlap(x, y, i->first, *j)) break;
                }
                if (overlap) break;
            }
            if (!overlap) a[x].insert(y);
        }
        int res=0;
        for(auto&v: a) res+=v.second.size();
        cout<<res<<endl;
    }
}
0