bnuoj 1057 函数(模拟)

时间:2023-12-06 09:45:20

http://www.bnuoj.com/bnuoj/problem_show.php?pid=1057

【题意】:给定x的值,带入f(x)求函数值

【题解】:注意第一个数的符号可能是'+',这里把我坑死了。。。

【code】:

 #include <iostream>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <algorithm> using namespace std; char str[],tstr[];
int stack[];
void init()
{
int i;
for(i=;i<;i++)
{
stack[i]=;
}
} int main()
{
int t;
scanf("%d",&t);
while(t--)
{
scanf("%s%s",str,tstr);
int x = ;
int i=;
if(tstr[]=='-') i=;
for(;tstr[i];i++)
{
x = *x+tstr[i]-'';
}
if(tstr[]=='-') x=-x;
init();
int len = strlen(str);
int cnt=,s=;
for(i=;i<len;i++)
{
if(str[i]=='+'&&i==) //居然有前导+号,坑死了
{
continue;
}
if(str[i]=='-'&&i==)
{
stack[cnt]*=-;
}
else if(str[i]=='-')
{
cnt++;
stack[cnt]*=-;
}
else if(str[i]=='+')
{
cnt++;
}
else if(str[i]>=''&&str[i]<='')
{
s=;
while(i<len&&str[i]>=''&&str[i]<='')
{
s = s*+str[i]-'';
i++;
}
i--;
stack[cnt]*=s;
}
else if(str[i]=='x')
{
if(str[i+]=='^')
{
i+=;
s=;
while(i<len&&str[i]>=''&&str[i]<='')
{
s = s*+str[i]-'';
i++;
}
i--;
stack[cnt]*=pow(x,s);
}
else
{
stack[cnt]*=x;
}
}
}
int sum = ;
for(i=;i<=cnt;i++)
{
sum+=stack[i];
}
printf("f(x)=%d\n",sum);
}
return ;
}