結果

問題 No.202 1円玉投げ
ユーザー hogeover30hogeover30
提出日時 2015-05-12 02:02:38
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 934 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 72,012 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-12-22 08:59:42
合計ジャッジ時間 85,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 889 ms
14,976 KB
testcase_01 TLE -
testcase_02 AC 1 ms
12,580 KB
testcase_03 AC 2 ms
12,576 KB
testcase_04 AC 1 ms
12,576 KB
testcase_05 AC 166 ms
12,832 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2,679 ms
12,580 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 3,284 ms
12,580 KB
testcase_14 AC 235 ms
6,824 KB
testcase_15 TLE -
testcase_16 AC 35 ms
8,064 KB
testcase_17 AC 452 ms
8,064 KB
testcase_18 AC 440 ms
8,064 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 8 ms
6,820 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 6 ms
6,820 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 3 ms
6,820 KB
testcase_35 AC 351 ms
8,064 KB
testcase_36 AC 1,412 ms
8,192 KB
testcase_37 TLE -
testcase_38 AC 333 ms
8,064 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 2 ms
12,580 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;
        while (n--) {
            int x, y; cin>>x>>y;
            bool overlap=false;
            for(auto i=a.lower_bound(x-20);i!=a.end();++i) {
                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