이 건 정말 이상 한 질문 입 니 다. PAT 1009 Product of poly nomials 구조 요청 ~ ~ ~
15606 단어 PAT 의 길
사상
이 문 제 는 매우 간단 하 다. 데이터 구 조 는 아래 표 시 를 지수 로 하고 값 은 계수 로 여러 가지 식 을 저장 하면 된다.
하지만!!
내 가 마지막 으로 계수 가 0 이 아 닌 항 수 를 통계 할 때 내 가 이해 할 수 없 는 오류 가 발생 했다!visited [] 를 사용 하여 이 항목 의 계수 가 0 인지 여 부 를 판단 하고 0 이면 visited [i] 값 이 0 이 며 그렇지 않 으 면 1 입 니 다.인쇄 할 때 visited 가 1 인지, 1 이면 인쇄... 세 번 째 테스트 포인트 가 틀 렸 다 고??
그러나.
나 는 data [i] 가 0 인지 아 닌 지 를 직접 판단 하여 테스트 점 이 순조롭게 통과 되 었 다.
원 제 는 아래 와 같다.
1009 Polynomials 제품 (25 점)
This time, you are supposed to find A×BA\times BA×B where AAA and BBB are two polynomials.
Input Specification:
Each input file contains one test case. Each case occupies 2 lines, and each line contains the information of a polynomial:
KKK N1N_1N1 aN1a_{N_1}aN1 N2N_2N2 aN2a_{N_2}aN2 ... NKN_KNK aNKa_{N_K}aNK
where KKK is the number of nonzero terms in the polynomial, NiN_iNi and aNia_{N_i}aNi (i=1,2,⋯,Ki=1, 2, \cdots , Ki=1,2,⋯,K) are the exponents and coefficients, respectively. It is given that 1≤K≤101\le K \le 101≤K≤10, 0≤NK0≤NK<⋯
For each test case you should output the product of AAA and BBB in one line, with the same format as the input. Notice that there must be NO extra space at the end of each line. Please be accurate up to 1 decimal place.
Sample Input:
2 1 2.4 0 3.2
2 2 1.5 1 0.5
Sample Output:
3 3 3.6 2 6.0 1 1.6
저자: 첸, 유
단위: 절강대학
시간 제한: 400 ms
메모리 제한: 64 MB
코드 길이 제한: 16 KB
코드 는 다음 과 같 습 니 다:
#include
#include
int main(void){
// ,
double data1[3010], data2[3010];
double data[3010];
int k1, k2;
int i, j;
int e;
double c;
int es1[30], es2[30]; //
int es[30], visited[3010];
for(i = 0; i < 30; i++){
es1[i] = -1;
es2[i] = -1;
es[i] = 0;
}
scanf("%d", &k1);
for(i = 0; i < k1; i++){
scanf("%d %lf", &e, &c);
data1[e] = c;
es1[i] = e;
}
scanf("%d", &k2);
for(i = 0; i < k2; i++){
scanf("%d %lf", &e, &c);
data2[e] = c;
es2[i] = e;
}
for(i = 0; i < 3010; i++){
data[i] = 0;
visited[i] = 0;
}
int t = 0;
int count = 0;
for(i = 0; i < k1; i++){
for(j = 0; j < k2; j++){
es[t] += es1[i] + es2[j];
data[es[t]] += data1[es1[i]] * data2[es2[j]];
//if(visited[es[t]]&&data[es[t]]!=0){
// count ++;
visited[es[t]] = 1;
//}
if(data[es[t]] == (double)0){
//count--;
visited[es[t]] = 0;
}
t++;
}
}
count=0;
for(i=0;i<3010;i++){
if(data[i] !=0)
count++;
}
printf("%d", count);
for(i = 3009; i >= 0; i--){
if(data[i] != (double)0 ){ // j !!!!!!! visited,
printf(" %d %.1lf", i, data[i] );
}
}
return 0;
}