AcWing
  • 首页
  • 活动
  • 题库
  • 竞赛
  • 应用
  • 其它
    • 题解
    • 分享
    • 商店
    • 问答
  • 吐槽
  • 登录/注册

板子

作者: 作者的头像   发廊探险家 ,  2023-01-24 19:26:52 ,  所有人可见 ,  阅读 44


2


#include <bits/stdc++.h>

using namespace std;
#define endl "\n"
#define four(i, a, b) for (ll i = a; i <= b; i++)
#define fourr(i, a, b) for (ll i = a; i >= b; i--)
#define Max(a, b) ((a) > (b) ? (a) : (b))
#define Min(a, b) ((a) < (b) ? (a) : (b))
#define ll long long
#define un unsigned
#define inf 0x7fffffff
#define mem(a, b) memset(a, b, sizeof(a))
#define lowbit(x) (x & (-x))
#define pii pair<int, int>
#define LL ll
#define YES puts("yes")
#define NO puts("no")

template <class T> inline void read(T &s)
{
    T w = 1;
    s = 0;
    char ch = getchar();
    while (ch < '0' || ch > '9')
    {
        if (ch == '-')
            w = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9')
        s = s * 10 + ch - '0', ch = getchar();
    s *= w;
}

const ll maxn = 35;
const ll maxm = 3e5 + 5;
const ll mod = 100003;
const int base = 4;

void solve()
{

}

int main()
{
    // int t;
    // cin>>t;
    // for(int i=1;i<=t;i++)
    solve();

}

0 评论

你确定删除吗?
1024
x

© 2018-2023 AcWing 版权所有  |  京ICP备17053197号-1
用户协议  |  常见问题  |  联系我们
AcWing
请输入登录信息
更多登录方式: 微信图标 qq图标
请输入绑定的邮箱地址
请输入注册信息