首页 > 编程语言 >C++缺省源

C++缺省源

时间:2023-01-20 10:00:28浏览次数:53  
标签:ch const int 缺省 long C++ define

C++竞赛使用缺省源(初稿)

点击查看代码
/*
	Author: Sean_xzx
	Right Output! & Accepted!
本题核心:
1.
本题步骤:
1.
*/
#include <bits/stdc++.h>

#define fz(i, a, b) for(int i = a; i <= b; i++)
#define fr(i, a, b) for(int i = a; i >= b; i--)
#define ufz(i, a, b) for(int i = a; i < b; i++)
#define ufr(i, a, b) for(int i = a; i > b; i--)
#define rp(i, a) for(int i = 1; i <= a; i++)
#define pr(i, a) for(int i = a; i >= 1; i--)
#define urp(i, a) for(int i = 0; i < a; i++)
#define upr(i, a) for(int i = a; i > 0; i--)
#define go(i, a) for(auto i : a)

//#define int long long
#define LL long long
#define ULL unsigned long long
#define PII pair<int, int>
#define PLL pair<long long, long long>
#define fi first
#define se second
const double eps15 = 1e-15, eps8 = 1e-8;
const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1}, inf = 0x7fffffff, inf_ = 0x80000000;//, inf3f = 0x3f3f3f3f;
const LL INF = 0x7fffffffffffffff, INF_ = 0x8000000000000000;
//const int mod = 1e9 + 7;
//const int mod = 998244353;
int gcd(int a, int b){ return b ? a : gcd(b, a % b);}
int lcm(int a, int b){ return a / gcd(a, b) * b;}

template <typename T> inline void rd(T &x){
	x = 0; bool f = true; char ch = getchar();
	while(ch < '0' || ch > '9'){ f = ch == '-' ? false : true; ch = getchar();}
	while(ch >= '0' && ch <= '9'){ x = (x << 1) + (x << 3) + (ch ^ '0'); ch = getchar();}
	if(!f) x = -x;
}
template <typename T, typename ...Args> inline void rd(T &x, Args &...args){ rd(x); rd(args...);}
/***********************************************code under the there********************************************/
using namespace std;

int main(){
	/*
	freopen(".in", "r", stdio);
	freopen(".out", "w", stdout);
	*/
	return 0;
}


特别感谢7KByte学长给的借鉴缺省源

标签:ch,const,int,缺省,long,C++,define
From: https://www.cnblogs.com/Seaniangel/p/17062437.html

相关文章

  • 一个C#将字节流通过管道传输到C++的问题
    提问: 提问一个C#将字节流通过管道传输到C++的问题现有一个字节流数据需要通过管道传输到C++,目前使用的方法是转成string通过WriteLine写入管道中,在C++中通过ReadFile读取......
  • 使用 Datakit 的 C/C++ profiling 功能
    使用Datakit的C/C++profiling功能前置条件Datakit侧配置PyroscopeAgent侧的安装与配置安装PyroscopeAgent获取nginx的PID运行PyroscopeAgent登......
  • C++的Visual Studio编译
    当我在使用C++创建控制台项目的时候我想把创建的一个HelloWorld!基本控制台编译完,发给其他人,让其在其他电脑上运行结果,当其他电脑打开我编译好的exe程序时...就出现了......
  • C++ OpenCV
    准备工作Ubuntu系统(虚拟机和物理机、服务器都可以)OpenCV3.4.1压缩包OpenCVcontrib3.4.1压缩包版本信息GCC版本Ubuntu11.3.0-1ubuntu1~22.04G++版本U......
  • C/C++学籍管理系统[2023-01-19]
    C/C++学籍管理系统[2023-01-19]使用下面的数据,用C/C++设计一个简单的学籍管理系统,实现出最基本的功能。学生基本信息文件(A.TXT)及其内容:A.TXT文件不需要编程录入数据,可......
  • C/C++音像图书租借管理系统[2023-01-19]
    C/C++音像图书租借管理系统[2023-01-19]24、音像图书租借管理系统功能要求:(1)创建音像图书库。此库中共有图书、VCD、DVD3类,而每个音像图书的信息均包括编号(用BV和D*......
  • 1、[T]C++简述
    C++简述C++是由标准C++委员会通过制定的,它有多个版本,比如C++98,C++11,C++14,C++17,C++20,C++23。读者可以参阅cppreference。本教程的绝大多数内容,事实上都取自这里。在学习......
  • C++汽车企业销售部门工资管理系统[2023-01-19]
    C++汽车企业销售部门工资管理系统[2023-01-19]某汽车企业销售部门的工资管理系统设计1、问题描述某汽车企业销售部门需要存储雇员(Employee)的编号、姓名、性别、级别,并进......
  • C/C++班级通讯录(散列表)[2023-01-19]
    C/C++班级通讯录(散列表)[2023-01-19]针对同班同学信息设计一个通讯录,学生信息有姓名,学号,电话号码等,以学生姓名为关键字设计散列表散列函数用除留余数法构造,用链地址法处理......
  • C/C++银行账户管理仿真软件[2023-01-19]
    C/C++银行账户管理仿真软件[2023-01-19]3.4银行账户管理仿真软件设计一个银行账户管理软件,可以实现:用户登录,账户管理,存取款等功能,要求通过读写文件来读取数据和保存......