H

HDU_cuizhihao

#1943124

这名用户暂未设置签名。

发帖
10
文章
0
互动
2
陶片
0
获赞
0
收藏
0

历史用户名外显

追踪最近的用户名外显变动记录。

  1. HDU_cuizhihao
    最早追溯到 2025/11/15最后捕获于 2025/11/15

时间线

最近的文章、讨论、云剪贴板与社区记录

  1. 发起讨论
    80分求调,最后一个测试点超时

    ```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…

    回复 0参与人数 1
  2. 发起讨论
    50分求调

    ```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(…

    回复 0参与人数 1
  3. 发起讨论
    递归二分,64求调

    ```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 -…

    回复 0参与人数 1
  4. 回复讨论

    在讨论75求调回复:

    @[songhy_QWQ](luogu://user/1098931)yiguanzhu1 %%%
  5. 回复讨论

    在讨论75求调回复:

    @[songhy_QWQ](luogu://user/1098931) 什么原理
  6. 发起讨论
    75求调

    ```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…

    回复 8参与人数 8
  7. 发起讨论
    60分,求调

    ```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…

    回复 0参与人数 1
  8. 发起讨论
    为什么编译失败

    ```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<<…

    回复 5参与人数 5
  9. 发起讨论
    80分,求调

    ```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…

    回复 0参与人数 1
  10. 发起讨论
    过了前三个test,后两个为什么过不了

    ```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…

    回复 1参与人数 1
  11. 发起讨论
    样例过了,但是全wa,求助

    ```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…

    回复 1参与人数 1
  12. 发起讨论
    最后三个测试点超时了,怎么办

    最后三个测试点超时,有没有什么好的改进方法 ```cpp #include using namespace std; using ll=long long; const int maxn=1e8+1; vector primes; bool isprimes[maxn]={0}; vector palin; vecto…

    回复 2参与人数 2
已经到最早的记录