結果

問題 No.760 Where am I moved to?
ユーザー FF256grhyFF256grhy
提出日時 2018-12-08 01:27:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 2,273 bytes
コンパイル時間 1,465 ms
コンパイル使用メモリ 165,620 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-12 04:07:02
合計ジャッジ時間 3,930 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 1 ms
4,352 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 2 ms
4,352 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long   signed int LL;
typedef long long unsigned int LU;

#define incID(i, l, r) for(int i = (l)    ; i <  (r); i++)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define  inc(i, n) incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define  dec(i, n) decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)

#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))

#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define PQ priority_queue

#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
#define  FOR(it, v) for(auto it =  v.begin(); it !=  v.end(); ++it)
#define RFOR(it, v) for(auto it = v.rbegin(); it != v.rend(); ++it)

template<typename T> bool   setmin(T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool   setmax(T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); }
template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; }

// ---- ----

const double TAU = atan2(0, -1) * 2.0;

double x[5], y[5], a;

int main() {
	inc(i, 5) {
		cin >> x[i] >> y[i];
		if(i == 0) { cin >> a; }
	}
	
	double dx = x[1], dy = y[1];
	inc(i, 5) {
		x[i] -= dx;
		y[i] -= dy;
	}
	{
		double dx = x[3], dy = y[3];
		x[0] -= dx;
		x[3] -= dx;
		x[4] -= dx;
		y[0] -= dy;
		y[3] -= dy;
		y[4] -= dy;
	}
	
	double t0 = atan2(y[0], x[0]);
	double t2 = atan2(y[2], x[2]);
	double t4 = atan2(y[4], x[4]);
	t0 += (t2 - t4);
	
	double l = hypot(x[0], y[0]);
	double X = dx + l * cos(t0);
	double Y = dy + l * sin(t0);
	
	a += (t2 - t4) * 360 / TAU;
	a += 360; // test
	// if(a < -180) { a += 360; }
	// if(a > +180) { a -= 360; }
	// assert(inII(a, -180, +180));
	
	printf("%.4f %.4f %.4f\n", X, Y, a);
	
	return 0;
}
0