• Bio
  • Accepted Problems
  • Recent Activities
  • Recent Solutions

洛谷

ME

NOI大纲

wdtd

HFOI2024

我的世界yyds

原神启动!

快读快写

int read()
{
	int res = 0,f = 1;
	char ch = getchar();
	while (ch<'0'||ch>'9') f = (ch=='-'?-1:f),ch = getchar();
	while (ch>='0'&&ch<='9') res = (res<<3)+(res<<1)+(ch^48),ch = getchar();
	return res*f;
}
void write(int x)
{
	if (x<0) putchar('-'),x = -x;
	if (x>9) write(x/10);
	putchar(x%10+'0');
}
void writech(int x,char ch){write(x),putchar(ch);}

general

桌游

c++小游戏

QQ邮箱

翻译

HFOJ

Judging

一个笑话

黑板上写着一道数学题 :a>0,a+1<0

数竞大神小A对信息学大佬小B说:“你连初中数学都没学过吗?原不等式组显然无解。”

小B拿起了一根粉笔,对小A微微一笑,转身在黑板上写下了: a=2147483647 或 9223372036854775807

This person is lazy and didn't write any solutions.

Problem Tags

动态规划,dp
12
USACO
12
O2优化
6
枚举
5
模拟
5
COCI
5
2007
4
Special Judge
4
2010
3
2018
3
树形数据结构
3
洛谷原创
3
背包
3
动态规划初步
3
2016
2
2019
2
2024
2
图论
2
最短路
2
进制
2