自我介绍
我是来自奇妙的东方世界, 一个叫做GR的神奇的地方,而我则是GRYZ的一位菜到不能再菜的小蒟蒻
本人七年级才刚刚知道OI,比起机房dalao们我菜多了...(感觉自己是机房最后一个开博客的)
啦啦啦啦~~
友链
62级的chaoba们
大超霸(天天fp帮我们抗癌)--lkp;
二超霸(又弱又颓)—lzx
三超霸(skkyk)--zkx
四超霸(最单纯)--zzh
老公!!!--sjp
去他博客看pg--cgp
整天默默擦黑板--yxj
61级dalao们
机房最强txt
又富又强yjg
强行改我码风lfd
啥都会lfd * 2
我的缺省源:
#include<iostream>
#include<cstdio>
#include <cmath>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
#include <cstdlib>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <vector>
#define N 100010
#define M 1010
using namespace std;
int read() {
int s = 0, f = 0; char ch = getchar();
while (!isdigit(ch)) f |= (ch == '-'), ch = getchar();
while (isdigit(ch)) s = s * 10 + (ch ^ 48), ch = getchar();
return f ? -s : s;
}