hdu1111 Secret Code
Input
The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case consists of one single line containing four integer numbers Xr, Xi, Br, Bi (|Xr|,|Xi| <= 1000000, |Br|,|Bi| <= 16). These numbers indicate the real and complex components of numbers X and B, i.e. X = Xr + i.Xi, B = Br + i.Bi. B is the basis of the system (|B| > 1), X is the number you have to express.
Output
Your program must output a single line for each test case. The line should contain the ``digits'' an, an-1, ..., a1, a0, separated by commas. The following conditions must be satisfied:
for all i in {0, 1, 2, ...n}: 0 <= ai < |B|
X = a0 + a1B + a2B2 + ...+ anBn
if n > 0 then an <> 0
n <= 100
If there are no numbers meeting these criteria, output the sentence "The code cannot be decrypted.". If there are more possibilities, print any of them.
Sample Input
4
-935 2475 -11 -15
1 0 -3 -2
93 16 3 2
191 -192 11 -12
진구소, DFS
X=a0+a1*B+a2*B^2+…an*B^n => X=a0+(a1+(a2+…)*B)*B)*B
처리:ai를 줄인 후 B를 제외하고 0까지
복수의 모드 | Z| | a+bi | = sqrt(a*a+b*b), 제법(a+bi)/(c+di)=(ac+bd)/(c*c+d*d)+(bc-ad)/(c*c+d*d)(분자분모동승(c-di))
#include<iostream>
#include<cstdio>
using namespace std;
typedef long long ll;
ll xr,xi,br,bi,mu;
int num_a,t;
int path[105];
bool flag=0;
void dfs(ll xr,ll xi,int num_a)
{
ll xrr,xii;
if(num_a>100||flag)
return ;
if(xr==0&&xi==0)
{
t=num_a;
flag=1;
return ;
}
for(int i=0;i*i<mu;i++)
{
if(flag)
return;
xrr=xr,xii=xi;
xrr-=i;
if((xrr*br+xii*bi)%mu!=0||(xii*br-xrr*bi)%mu!=0)
continue;
ll qxrr=xrr;
xrr=(xrr*br+xii*bi)/mu;
xii=(xii*br-qxrr*bi)/mu;
path[num_a]=i;
dfs(xrr,xii,num_a+1);
}
}
int main()
{
int kase;
cin>>kase;
while(kase--)
{
cin>>xr>>xi>>br>>bi;
mu=br*br+bi*bi;
flag=0;
dfs(xr,xi,0);
if(!flag)
{
cout<<"The code cannot be decrypted."<<endl;
continue;
}
cout<<path[t-1];
for(int i=t-2;i>=0;i--)
cout<<','<<path[i];
cout<<endl;
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.