本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- jbosscn
- mengjichen
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
最新文章列表
poj 2239 Selecting Courses
Selecting Courses
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 7144
Accepted: 3141
题目链接:http://poj.org/problem?id=2239
Description
It is w ...
poj_1469 COURSES
COURSES
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 13861
Accepted: 5481
题目链接:http://poj.org/problem?id=1469
Description
Consider a group ...
poj_2063 过山车
过山车
Time Limit:1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K(Java/Others) Total Submission(s): 5197 Accepted Submission(s): 2292
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2063
...
poj_1274 The Perfect Stall
The Perfect Stall
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 14473
Accepted: 6621
题目链接:http://poj.org/problem?id=127 ...
hdu 过山车 二分匹配模板
#include <stdio.h>
#include <cstring>
bool map[501][501];
bool vis[501];
int match[501];
int n,m;//注意,定义在主函数里的变量在main函数里面不能再定义。否则就失效,按0来计算!
bool find(int x)//寻找A可能匹配的点集合
{
for(int i=1; ...
Machine Schedule 二分图最大匹配基础题
#include <stdio.h>
#include <cstring>
bool map[101][101];
bool vis[101];
int match[101];
int n,m,k;
bool find(int x)
{
for(int i=1;i<=m;i++)
{
if(!vis[i]&&map[x][ ...
【最大流+Dinic+Edmonds_Karp+二分匹配】北大 poj 1698 Alice's Chance
Dinic 算法
/* THE PROGRAM IS MADE BY PYY */
/*----------------------------------------------------------------------------//
Copyright (c) 2011 panyanyany All rights reserved.
URL : ht ...