本月博客排行
-
第1名
duanfei -
第2名
benladeng5225 -
第3名
steven789654 - wddpwzzhao123
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- kaizi1992
- tanling8334
- vipbooks
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- wallimn
- e_e
- jh108020
- ganxueyun
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xiangjie88
- xpenxpen
- 喧嚣求静
- lchb139128
- kristy_yy
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- flashsing123
- lyndon.lin
- bosschen
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
- hudiemeng870329
- mft8899
- duanfei
- java_doom
最新文章列表
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 ...