Cod sursa(job #2271475)

Utilizator IulianBobocBoboc Iulian IulianBoboc Data 28 octombrie 2018 17:55:05
Problema Algoritmul lui Euclid extins Scor 50
Compilator cpp-64 Status done
Runda Arhiva educationala Marime 0.68 kb
#include<fstream>
using namespace std;

int T, a, b, c, i, x, y, d;

void euclid(int a, int b, int &x, int &y) {
	
	if (b == 0) {
		d = a;
		x = 1;
		y = 0;
	}
	else {
		int x0, y0;
		euclid(b, a%b, x0, y0);
		x = y0;
		y = x0 - (a / b) * y0;
	}
}

void readDataAndCompute(ifstream &fin, ofstream &fout) {
	fin >> T;
	for (i = 1; i <= T; ++i) {
		fin >> a >> b >> c;
		euclid(a, b, x, y);
		if (c % d != 0) {
			fout << 0 << " " << 0 << "\n";
		}
		else {
			fout << x * c / d << " " << y * c / d << "\n";
		}
	}
}
int main() {
	ifstream fin("euclid3.in");
	ofstream fout("euclid3.out");
	readDataAndCompute(fin, fout);
	fin.close();
	fout.close();
	return 0;
}