結果
問題 | No.55 正方形を描くだけの簡単なお仕事です。 |
ユーザー | sugim48 |
提出日時 | 2014-11-03 00:22:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 603 ms / 5,000 ms |
コード長 | 1,404 bytes |
コンパイル時間 | 855 ms |
コンパイル使用メモリ | 86,868 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 13:40:51 |
合計ジャッジ時間 | 12,966 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 294 ms
6,816 KB |
testcase_01 | AC | 574 ms
6,816 KB |
testcase_02 | AC | 296 ms
6,820 KB |
testcase_03 | AC | 293 ms
6,820 KB |
testcase_04 | AC | 596 ms
6,820 KB |
testcase_05 | AC | 603 ms
6,820 KB |
testcase_06 | AC | 594 ms
6,816 KB |
testcase_07 | AC | 600 ms
6,816 KB |
testcase_08 | AC | 592 ms
6,820 KB |
testcase_09 | AC | 576 ms
6,816 KB |
testcase_10 | AC | 587 ms
6,820 KB |
testcase_11 | AC | 267 ms
6,816 KB |
testcase_12 | AC | 587 ms
6,820 KB |
testcase_13 | AC | 325 ms
6,820 KB |
testcase_14 | AC | 292 ms
6,816 KB |
testcase_15 | AC | 600 ms
6,820 KB |
testcase_16 | AC | 292 ms
6,816 KB |
testcase_17 | AC | 588 ms
6,816 KB |
testcase_18 | AC | 262 ms
6,820 KB |
testcase_19 | AC | 587 ms
6,820 KB |
testcase_20 | AC | 296 ms
6,816 KB |
testcase_21 | AC | 287 ms
6,816 KB |
testcase_22 | AC | 344 ms
6,816 KB |
testcase_23 | AC | 308 ms
6,816 KB |
testcase_24 | AC | 261 ms
6,816 KB |
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cstring> #include <climits> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int u, v; double w; }; ll MOD = 1000000007; ll _MOD = 1000000009; ll MOD2 = 1LL << 32; int dx[4] = {-1, 0, 1, 0}; int dy[4] = {0, -1, 0, 1}; bool check(vector<int>& x, vector<int>& y) { vector<int> v; for (int i = 0; i < 4; i++) for (int j = i + 1; j < 4; j++) { int dx = x[i] - x[j], dy = y[i] - y[j]; v.push_back(dx * dx + dy * dy); } sort(v.begin(), v.end()); int l = v[0]; if (l == 0) return false; // 点が重なる return v[0]==l && v[1]==l && v[2]==l && v[3]==l && v[4]==l*2 && v[5]==l*2; } int main() { vector<int> X(4), Y(4); for (int i = 0; i < 3; i++) cin >> X[i] >> Y[i]; for (int x = -1000; x <= 1000; x++) for (int y = -1000; y <= 1000; y++) { X[3] = x; Y[3] = y; if (check(X, Y)) { cout << x << ' ' << y << endl; return 0; } } cout << -1 << endl; }