h

hehe123313

#1091535

这名用户暂未设置签名。

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

历史用户名外显

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

  1. hehe123313
    最早追溯到 2023/10/22最后捕获于 2023/10/22

时间线

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

  1. 发起讨论
    记忆化搜索只有40分!求助必关注

    ```cpp #include #include using namespace std; const int N=110; char a[N][N]; int n,m,T; int r1,c1,r2,c2; long long dp[N][N][N]; int dx[4] = {-1, 0, 1, 0}, dy[4]…

    回复 0参与人数 1
  2. 发起讨论
    求助第4个任务点2测试点错了!必关注

    ```cpp #include #include using namespace std; string x; string ansx; string ansy; int main() { cin >> x; reverse(x.begin(), x.end()); int znum = 0; int notz = 0…

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

    在讨论菜鸡思路感觉是对的但是只有10分其他都tle了回复:

    就是找到每次位置变化的规律,然后不断往前面递推
  4. 发起讨论
    菜鸡思路感觉是对的但是只有10分其他都tle了

    ```cpp #include using namespace std; typedef long long ll; ll n; string s; ll now; int main() { cin>>s>>n; now=s.size(); while(now*2<n) now*=2; while(1==1) { if…

    回复 1参与人数 1
  5. 发起讨论
    萌新初学线段树60分求调!

    ```cpp #include using namespace std; const int N = 8 * 1E5 + 10; struct tree { int l; int r; int maxnum; } tr[N]; int n, m; int a[N]; void pushup(int u) { tr[u]…

    回复 0参与人数 1
  6. 回复讨论
  7. 发起讨论
    萌新才看了一点点线段树,为什么我样例不对咧

    ```cpp #include using namespace std; const int N = 4 * 1E5 + 10; struct tree { int l; int r; int sum; int add; } tr[N]; int n, m; int a[N]; void pushup(int u) {…

    回复 4参与人数 4
  8. 发起讨论
    哪错了啊 60分

    ```cpp #include #include #include using namespace std; int day[13] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; const int N = 10000; struct node { int…

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

    在讨论为什么我的i还是*,看来好多遍了!回复:

    这是输出 *y*zhong gy****** n******* o**z**** h***h*** z****o** ******n* y******g
  10. 发起讨论
    为什么我的i还是*,看来好多遍了!

    ```cpp #include #include #include using namespace std; const int N = 110; char a[N][N]; int n; int dx[8] = {0, 0, 1, -1, 1, -1, 1, -1}; int dy[8] = {1, -1, 0, 0…

    回复 2参与人数 2
  11. 发起讨论
    为什么只有33分啊,找吐了

    ```cpp #include #include using namespace std; typedef long long ll; const int N = 50; int a[N]; int n; int num; int ans; bool st[N]; unordered_set q; bool judge…

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

    在讨论二分在 2,4个点超时?回复:

    我是傻derhhh,改了改了
  13. 发起讨论
    二分在 2,4个点超时?

    ```cpp #include using namespace std; double a,b,c,d; double x1,x2,x3; double fc(double x) { return a*x*x*x+b*x*x+c*x+d; } int main() { cin>>a>>b>>c>>d; int num=…

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

    在讨论树状数组全wa回复:

    过了过了,原来我离散化错了哈哈哈
  15. 发起讨论
    树状数组全wa

    ```cpp #include #include #include using namespace std; const int N=5*1e5+10; vector v; int a[N]; int n; long long num; int cnt[N]; int lowbit(int x) { return x&…

    回复 1参与人数 1
  16. 发起讨论
    90分求助 100个数据的样例输出对的

    ```cpp #include #include using namespace std; int n; const int N=300; struct node { int num; string name; int score1,score2; char judge1,judge2; int data; int m…

    回复 0参与人数 1
  17. 发起讨论
    不能用set吗全wa了

    ```cpp #include #include using namespace std; int n; int x; set q; set ::iterator it; int main() { cin>>n; for(int i=1;i >x; q.insert(x); } for(it=q.begin();it!…

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

    ```cpp #include using namespace std; const int N=100010; int n; struct student { string name; int score1; int score2; char ganbu; char xibu; int book; int money…

    回复 1参与人数 1
  19. 发起讨论
    数据正确0分求助!

    ```cpp #include using namespace std; int numa=0,numb=0; int judge11() {if(numa==11||numb==11) {if((numa-numb)>=2) return 111; if((numb-numa>=2)) return 112; } r…

    回复 0参与人数 1
  20. 发起讨论
    20分求助 只过了前2个点!

    ```cpp #include #include using namespace std; struct people { int x; int score; }a[10010],b[100010]; void maopao_sort(people a[], int n) { for (int i = 1; i a[j…

    回复 1参与人数 1
  21. 回复讨论
  22. 发起讨论
    60分求助,找不到问题!

    ``` #include using namespace std; int l,r,c,n,m; int a[100000],b[100000]; void insert(int l,int r,int c) {b[l]+=c; b[r+1]-=c; } void quick_sort(int a[],int l,in…

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

    在讨论样例能过但是全wa,求助回复:

    哥们解决没有啊,我也是全wa了```cpp #include #include #include using namespace std; vector add(vector &A , vector &B)//计算A+B { vector c; int t=0; for(int i=0;i A,B; for(int i…
  24. 回复讨论

    在讨论全wa求助,不知道问题在哪回复:

    ``` #include #include #include using namespace std; vector add(vector &A , vector &B)//计算A+B { vector c; int t=0; for(int i=0;i A,B; for(int i=a.size()-1;i>=0;i…
  25. 发起讨论
    全wa求助,不知道问题在哪

    (暂无内容)

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

    在讨论循环链表数据正确但只有25,求助!回复:

    ```cpp #include using namespace std; struct node {int data; node *next; }; node *head,*r,*p; int main() {head=new node; r=new node; p=new node; p->data=1; head=…
  27. 发起讨论
    循环链表数据正确但只有25,求助!

    用循环链表做的,数据对了,单为什么只有25分啊

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