摘要:
这是一个刷数量的博客,大佬勿入。 前面写过一个有关inline的博客,但是并没有什么用,但是这里就体现出来了。 inline int read() { int x=0,f=1;char ch=getchar(); while (!isdigit(ch)){if (ch=='-') f=-1;ch=g 阅读全文
摘要:
题目描述 给定一个长度为 nn 的字符序列 aa,初始时序列中全部都是字符 L。 有 qq 次修改,每次给定一个 xx,若 a_xax 为 L,则将 a_xax 修改成 R,否则将 a_xax 修改成 L。 对于一个只含字符 L,R 的字符串 ss,若其中不存在连续的 L 和 R,则称 ss 阅读全文
摘要:
#define fastcall __attribute__((optimize("-O3"))) #pragma GCC optimize(2) #pragma GCC optimize(3) #pragma GCC optimize("Ofast") #pragma GCC optimize(" 阅读全文
摘要:
#include<cstdio> #include<iostream> #include<algorithm> using namespace std; #define fastcall __attribute__((optimize("-O3"))) #pragma GCC optimize(2) 阅读全文
摘要:
#include<cstdio> const int maxn=100005; int p; typedef long long int ll; int n,q,m; ll a[maxn]; struct Node { ll tag1,tag2,v; int l,r; Node *ls,*rs; i 阅读全文