这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; double w0,w,n; double f(double x){ return (x*pow(1+x,n)*w0)/(pow(1+x,n)-1); } double bisearch(double l,double r){ for(int i…
```cpp #include using namespace std; double a,b,c,d; double f(double x){ return a*pow(x,3)+b*pow(x,2)+c*x+d; } double bisearch(double left,double right){ if(!f(…
```cpp #include #define maxn 1000000+5 #define ll long long using namespace std; ll a[maxn]; ll bisearch(ll a[],ll left,ll right,ll x){ if(left>right){ return -…
在讨论《75求调》回复:
@[songhy_QWQ](luogu://user/1098931)yiguanzhu1 %%%
在讨论《75求调》回复:
@[songhy_QWQ](luogu://user/1098931) 什么原理
```cpp #include #define maxn 200005 using namespace std; void solve(){ int sum[maxn]={0}; int n; cin>>n; for(int k=1;k =1;i--){ cout<<sum[i]; } } int main(){ so…
```cpp #include using namespace std; void solve(){ int n; scanf("%d",&n); for(int i=n;i>=0;i--){ int x; scanf("%d",&x); if(x==0) continue; if(i==n){ printf("%dx…
```cpp #include using namespace std; void solve(){ //string s; char ch[1000]; gets(ch); int cnt=0; for(int i=0;i<strlen(ch);i++){ if(ch[i]!=' ') cnt++; } cout<<…
```cpp #include using namespace std; string sign,x,y; int transtonum(string s){ int num=0; for(int i=0;i =0;i--){ s+=temps[i]; } return s; } void solve(){ strin…
```cpp #include using namespace std; char a[6][305]; void fun(int num,int step){ if(num==0){ a[1][3*step-2]='X';a[1][3*step-1]='X';a[1][3*step]='X'; a[2][3*step…
```cpp #include using namespace std; void solve(){ int world[27][27][27]; memset(world,0,sizeof(world)); int w,x,h; cin>>w>>x>>h; int q; cin>>q; int x_1,x_2,x_3…
最后三个测试点超时,有没有什么好的改进方法 ```cpp #include using namespace std; using ll=long long; const int maxn=1e8+1; vector primes; bool isprimes[maxn]={0}; vector palin; vecto…