q

qiufangguo

#1111873

这名用户暂未设置签名。

发帖
15
文章
0
互动
9
陶片
0
获赞
0
收藏
0

历史用户名外显

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

  1. qiufangguo
    最早追溯到 2024/07/18最后捕获于 2024/07/18

时间线

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

  1. 发起讨论
    有没有讲动态规划背包问题的资源

    蒟蒻自学学不懂qwq

    回复 1参与人数 1
  2. 回复讨论

    在讨论递归50求调 5TLE回复:

    加了高精变40了。, ```cpp #include #include #include #include #pragma comment(linker, "/STACK:102400000,102400000") using namespace std; struct Bigint { int len, a[1500…
  3. 发起讨论
    递归50求调 5TLE

    ```cpp #include using namespace std; int n; int step(int a){ if(a==1)return 1; else if(a==2)return 2; else{ return step(a-1)+step(a-2); } } int main() { cin>>n;…

    回复 2参与人数 2
  4. 回复讨论

    在讨论问如何实现如这种排列回复:

    @[qiufangguo](/user/1111873) 修改一下 1234四个数字最后找出来的是 1 2 3 4 12 13 14 23 24 34 123 124 134 234 1234
  5. 发起讨论
    问如何实现如这种排列

    如有 1 2 3这三个数字,能列举出 1 2 3 12 13 23 123 如有 1 2 3 4这四个数字,能列举出 1 2 3 4 12 13 14 23 24 34 123 234 1234 要求排列出来的相对位置不能改变 求大佬们救救我。。本蒟蒻就要比赛了

    回复 4参与人数 4
  6. 发起讨论
    样例过了但全WA求条

    ```c #include using namespace std; int c,t,v[10]; string n; int main(){ scanf("%d",&c); scanf("%d",&t); for(int i=0;i >n; int ln=n.size(); for(int i=1;i<=9;i++)…

    回复 2参与人数 2
  7. 发起讨论
    30求调

    ```cpp #include using namespace std; int n,m[5][8],result=0; int main(){ scanf("%d",&n); for(int i=0;i<n;i++){ for(int j=0;j<5;j++)scanf("%d",&m[i][j]); } for(i…

    回复 2参与人数 2
  8. 发起讨论
    TLE+WA 0分求调

    ```cpp #include using namespace std; int n,m,q,l1,r1,l2,r2; int a[100001],b[1000001]; int main(){ scanf("%d%d%d",&n,&m,&q); for(register int i=1;i maxy)maxy=b[j…

    回复 1参与人数 1
  9. 发起讨论
    85分求助

    ```c #include using namespace std; int n,a[601],b,sum; double w; int main(){ scanf("%d",&n); cin>>w; w/=100; for(int i=1;i 0){ if(sum>a[j])sum-=a[j]; else{ prin…

    回复 3参与人数 3
  10. 发起讨论
    80分求助

    ```c #include using namespace std; int n; int main(){ scanf("%d",&n); if(n%2==1)printf("%d",-1); else{ while(n>0){ cout<<pow(2,int(log2(n)))<<" "; n-=pow(2,int(…

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

    在讨论全WA...求助回复:

    @[goIdie](/user/1041965) 我在两个平台做题,有时候交着交着就交混了哈哈哈哈哈
  12. 回复讨论

    在讨论全WA...求助回复:

    @[goIdie](/user/1041965) 我已经AC了(✿◡‿◡)
  13. 发起讨论
    全WA...求助

    ```cpp #include using namespace std; int n,ways,sum=0,ans,price,t,use; struct ticket{ int price,times,flag=0; }a[100001]; int main(){ freopen("transfer.in","r",…

    回复 3参与人数 3
  14. 回复讨论

    在讨论0分求助回复:

    我忘记把文件操作注释掉了,,,注释掉后是70
  15. 发起讨论
    0分求助

    ```cpp #include using namespace std; int n,a[200001],book[200001]={0},b; int main(){ freopen("bear.in","r",stdin); freopen("bear.out","w",stdout); scanf("%d",&n…

    回复 1参与人数 1
  16. 发起讨论
    80分求助...

    ```cpp #include using namespace std; int n,m,b[101][101]={0}; char a[101][101]; int main(){ //freopen("mine.in","r",stdin); //freopen("mine.out","w",stdout); sc…

    回复 1参与人数 1
  17. 发起讨论
    10分 9WA求助

    ```cpp #include using namespace std; int n,q,a[1001],c; long long int d=1; struct reader{ long long int x; int y;//x:长度 y:需求码 }b[1001]; int main(){ //freopen("l…

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

    在讨论1AC 2WA 求助回复:

    @[kevinZ99](/user/1117080) 谢谢已AC
  19. 回复讨论

    在讨论1AC 2WA 求助回复:

    @[liuzhuoran141516](/user/1351155) 感谢,AC啦
  20. 发起讨论
    1AC 2WA 求助

    ```cpp #include using namespace std; unsigned long long int st[1000001]; int sum=0,t,n,top=0,a; string s; int main(){ cin>>t; for(int i=0;i >n; for(int j=0;j >s…

    回复 4参与人数 4
  21. 回复讨论

    在讨论全RE 刚开始学链表求助回复:

    @[gavinliu266](/user/694360) 好的好的我看看
  22. 回复讨论

    在讨论全RE 刚开始学链表求助回复:

    @[gavinliu266](/user/694360) 不求全对,主要也是练一下链表
  23. 发起讨论
    全RE 刚开始学链表求助

    ```cpp #include using namespace std; int q,n,sum=1,a; struct Node{ int data; Node *next; }*head,*p,*r,*now; void insert(Node *p,Node *r){//将p插到r后 p->next=r->nex…

    回复 5参与人数 5
  24. 发起讨论
    80分求助

    ```cpp #include using namespace std; char s1[2005],s2[2005]; int a[2005],b[2005],c[2005],x; int main(){ int la,lb,lc; scanf("%s",s1); scanf("%s",s2); la=strlen(…

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