結果

問題 No.195 フィボナッチ数列の理解(2)
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-26 23:33:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,062 bytes
コンパイル時間 1,403 ms
コンパイル使用メモリ 150,988 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-18 11:24:55
合計ジャッジ時間 4,479 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define T 50

#define MAX 1000000001

long long A[T];
long long B[T];


long long ansA = MAX;
long long ansB = MAX;

int main() {
	A[0] = 1;
	B[1] = 1;
	for (int i = 2; i < T; i++)
	{
		A[i] = A[i - 1] + A[i - 2];
		B[i] = B[i - 1] + B[i - 2];
	}

	vector<long long> num(3);
	cin >> num[0] >> num[1] >> num[2];
	sort(num.begin(), num.end());

	if (num[0] == num[1] && num[1] == num[2]){
		ansA = 1;
		ansB = num[0];
	}
	if (num[0] == num[1] || num[1] == num[2]){
		int tempA = num[0];
		int tempB = num[2];
		if (tempA > tempB) swap(tempA, tempB);
		if (ansA > tempA || (ansA == tempA && ansB > tempB)){
			ansA = tempA;
			ansB = tempB;
		}
	}
	
	for (int i = 0; i < T; i++)
	{
		if (A[i] + B[i] > num[0]) continue;
		for (int j = 0; j < T; j++)
		{
			if (A[j] + B[j] > num[1]) continue;
			for (int k = 0; k < T; k++)
			{
				if (A[k] + B[k] > num[2]) continue;
				if (A[k] == 0 || B[k] == 0) continue;
				double lowa = 0;
				double higha = num[2] / A[k] + 1;

				if (lowa > higha) continue;
				for (int l = 0; l < 100; l++)
				{
					double a1 = (lowa + lowa + higha) / 3;
					double a2 = (lowa + higha + higha) / 3;

					double b1 = (num[2] - a1 * A[k]) / B[k];
					double b2 = (num[2] - a2 * A[k]) / B[k];

					double diff1 = 0;
					double diff2 = 0;

					diff1 += abs(num[0] - (a1 * A[i] + b1 * B[i]));
					diff1 += abs(num[1] - (a1 * A[j] + b1 * B[j]));

					diff2 += abs(num[0] - (a2 * A[i] + b2 * B[i]));
					diff2 += abs(num[1] - (a2 * A[j] + b2 * B[j]));

					if (diff1 < diff2) higha = a2;
					else lowa = a1;
				}
				int ta = (int)(lowa + 0.5);
				for (int a = max(ta - 10, 1); a <= ta + 10; a++){
					int b = (num[2] - a * A[k]) / B[k];
					if (b <= 0) continue;
					if (num[0] != a * A[i] + b * B[i]) continue;
					if (num[1] != a * A[j] + b * B[j]) continue;
					if (a <= 0) continue;
					if (ansA > a || (ansA == a && ansB > b)){
						ansA = a;
						ansB = b;
					}
				}
			}
		}
	}

	if (ansA == MAX) cout << -1 << endl;
	else cout << ansA << " " <<  ansB << endl;
}
0