Mai intai trebuie sa te autentifici.
Cod sursa(job #2008196)
Utilizator | Data | 5 august 2017 18:00:56 | |
---|---|---|---|
Problema | Algoritmul lui Euclid extins | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva educationala | Marime | 0.77 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("euclid3.in");
ofstream fout("euclid3.out");
int N;
void euclid(int a, int b, int *d, int *x, int *y)
{
if (b == 0) {
*d = a;
*x = 1;
*y = 0;
} else {
int x0, y0;
euclid(b, a % b, d, &x0, &y0);
*x = y0;
*y = x0 - (a / b) * y0;
}
}
int main()
{
fin >> N;
while( N-- )
{
int a, b, c;
fin >> a >> b >> c;
int x, y, d;
euclid( a, b, &d, &x, &y );
// cout << x << " " << y << " " << d << "\n";
if( c % d )
fout << "0 0\n";
else
fout << x * ( c / d ) << " " << y * ( c/ d ) << "\n";
}
return 0;
}