博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1528 二分图最大匹配
阅读量:5365 次
发布时间:2019-06-15

本文共 903 字,大约阅读时间需要 3 分钟。

1 /*  2   3 */  4 #include 
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #define maxn 30 14 using namespace std; 15 int num1(char c){ 16 if (c>='2' && c<='9') return c-'0'; 17 if (c=='T') return 10; 18 if (c=='J') return 11; 19 if (c=='Q') return 12; 20 if (c=='K') return 13; 21 if (c=='A') return 14; 22 } 23 int num2(char c){ 24 if (c=='H') return 4; 25 if (c=='S') return 3; 26 if (c=='D') return 2; 27 if (c=='C') return 1; 28 } 29 int comp(char sx[],char sy[]){ 30 int k1,k2,t1,t2; 31 k1=num1(sx[0]); 32 k2=num1(sy[0]); 33 t1=num2(sx[1]); 34 t2=num2(sy[1]); 35 if (k1==k2) { 36 if (t1>t2) return 1; 37 if (t1==t2) return 0; 38 if (t1
G[maxn*2]; 48 49 bool dfs(int s)//找到从s点出发的可增广路 50 { 51 for(int i=0;i

 

转载于:https://www.cnblogs.com/little-w/p/3650447.html

你可能感兴趣的文章
socket基本概念
查看>>
[第三方]SCNetworkReachability 获取网络状态控件使用方法
查看>>
在Windows上使用putty连接一台Linux主机
查看>>
Socket常见错误
查看>>
百度地图2.0API和3.0API。你想要的百度地图的这都有
查看>>
专业词汇
查看>>
星期五的收获
查看>>
proxmox 去除订阅提示
查看>>
使用Html.EditorFor()为文本框加上maxlength,placeholder等属性
查看>>
[转]后缀数组求最长重复子串
查看>>
设计模式——外观模式详解
查看>>
MVC3 控件
查看>>
mysql (一)
查看>>
photoshop图层样式初识1
查看>>
【.NET】使用HtmlAgilityPack抓取网页数据
查看>>
typedef的使用
查看>>
基于位置的本地商铺个性化推荐
查看>>
职场上一个人情商高的十种表现
查看>>
【底层原理】深入理解Cache (下)
查看>>
Elasticsearch安装中文分词插件IK
查看>>