本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- sichunli_030
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lxguy
- zhangjijun
最新文章列表
Codeforces Round #108 (Div. 2) 惊魂记
好吧,人品又消耗了,rating没跌。可是,只涨了20几分,和没涨一样。怎么说呢,编码能力,思维清晰度还是跟不上。cf的题目真的不错,虽说没有什么算法,但是都不是那么容易做出来,总要绕点弯子。
A,用一个vis数组来保证每个学生只能被记录一次,然后扫一遍就行了。但是手一抖就习惯性的把map[j][i]敲成了map[i][j]。浪费了五分多种才找到。
#include<i ...
Codeforces Round #107 (Div. 2)-吐血记~~
地址 http://codeforces.com/contest/151
A:弱水题,分别求出三种食品分别用来提供几次toast,取最小值再除以人数即可,一点弯都不要转。
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int main(){
...
Codeforces Beta Round #97 (Div. 2) 【完整题解】
KIDx 的解题报告 题目链接:http://codeforces.com/contest/136以下省略头文件
前三题是超级水题,不解释;后两题是很不错的水题,详细解释
A题
#include <iostream>
using namespace std;
#define M 105
int pre[M];
int main()
{
int n, i ...
Codeforces Beta Round #96 (Div. 2)【完整题解】
KIDx 的解题报告
题目链接:http://codeforces.com/contest/133
以下省略头文件,前三题是水题,不解释
A题
#define M 105
char s[M];
int main()
{
bool flag;
int i, len;
while (gets (s))
{
flag = false;
len = strlen (s ...