写题解请注意

鼓励大家写题解,但注意题解格式。

题解一定要有思路解析或代码注释,能否让别人理解你的思路 也是你的能力的检验,不要只放无意义的代码给大家复制,那就失去了做题的初心。

给代码两端加上这个会舒服一些

```cpp

你的代码

```

1 条评论

  • @ 2024-10-27 1:04:35
    /**
     *    author: 小飞侠
     *    created: 2024.10.27 01:03:31
     */
    #include <bits/stdc++.h>
    using namespace std;
    #define ls u << 1
    #define rs u << 1 | 1
    #define LL long long
    #define int long long
    #define PII pair <int, int>
    #define fi first
    #define se second
    #define pub push_back
    #define pob pop_back
    #define puf push_front
    #define pof pop_front
    #define lb lower_bound
    #define ub upper_bound
    #define i128 __int128
    #define pcnt(x) __builtin_popcount(x)
    #define mem(a,goal) memset(a, (goal), sizeof(a))
    #define rep(x,start,end) for(int x = (start) - ((start) > (end)); x != (end) - ((start) > (end)); ((start) < (end) ? x ++ : x --))
    #define aLL(x) (x).begin(), (x).end()
    #define sz(x) (int)(x).size()
    const int INF = 998244353;
    const int P = 1e9 + 7;
    const int N = 2e5 + 5;
    void solve()
    {
        
    }
    signed main()
    {
        solve();
        return 0;
    }
    
    • 1