結果

問題 No.94 圏外です。(EASY)
ユーザー TatsuyaObaTatsuyaOba
提出日時 2016-12-18 16:29:58
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,339 bytes
コンパイル時間 820 ms
コンパイル使用メモリ 66,196 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 06:42:07
合計ジャッジ時間 1,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 4 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <vector>

using namespace std;

class Pos {
public:
    int x;
    int y;
    Pos() {

    }
    Pos(int x, int y) {
        this->x = x;
        this->y = y;
    }
    int distance(Pos pos) {
        return (x - pos.x) * (x - pos.x) + (y - pos.y) * (y - pos.y);
    }
};


bool check[1000];
Pos all_pos[1000];
int N;

void foo(int index, vector<Pos> &poss) {
    for (int i = 0; i < N; i++) {
        if (check[i]) {
            continue;
        }
        int distance = all_pos[index].distance(all_pos[i]);
        if (distance <= 100) {
            check[i] = true;
            poss.push_back(all_pos[i]);
            foo(i, poss);
        }
    }
}

int main() {
    cin >> N;
    for (int i = 0; i < N; i++) {
        check[i] = false;
    }
    int ans = 0;
    for (int i = 0; i < N; i++) {
        int x, y;
        cin >> x >> y;
        all_pos[i] = Pos(x, y);
    }
    for (int i = 0; i < N; i++) {
        if (check[i]) {
            continue;
        }
        vector<Pos> poss;
        poss.push_back(all_pos[i]);
        foo(i, poss);
        for (int j = 0; j < poss.size(); j++) {
            for (int k = j; k < poss.size(); k++) {
                ans = max(ans, poss[j].distance(poss[k]));
            }
        }
    }
    cout << sqrt(ans) + 2 << endl;
    return 0;
}

0