Question There are a total of n courses you have to take, labeled from 0 to n-1. Some courses may have prerequisites, for example to take course 0 you ...
分类:
其他好文 时间:
2019-08-30 14:00:37
阅读次数:
84
PAT A1012 The Best Rank 题目描述: To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C ...
分类:
其他好文 时间:
2019-08-28 01:05:37
阅读次数:
86
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3697 因为每隔5分钟选一次 那么枚举0-4就可以 5-1000 都可以由0-4加5加5得到 然后就是题目说可以在非整数点的时候开始 那我们就枚举0.0001,1.0001,2.0001,3.0001,4 ...
分类:
其他好文 时间:
2019-08-18 10:02:03
阅读次数:
81
题意:n门课,每门各自有t个开课时间,在不冲突的情况下选最多课。 题解:把周p第q节课转化为数值sum,表示在一周7*12节课中排第几节,用二分图最大匹配。 #include<stdio.h> #include<iostream> #include<algorithm> #include<cstri ...
分类:
编程语言 时间:
2019-08-10 21:59:36
阅读次数:
114
题意:给出P门课程,N个学生。每一门课程可能有多个学生感兴趣然后我们需要匹配,使得每一门课程都只包含一名对其感兴趣的学生问:能否匹配成立思路:这个就是典型的二分图匹配问题。常用匈牙利算法 完整代码:(一开始写成了无向图....)写成有向图是因为学生是可以剩余的 ...
分类:
其他好文 时间:
2019-08-10 21:15:02
阅读次数:
99
前两篇其实是同一篇,都是讲在后台添加菜单类型的http://www.ashuwp.com/courses/highgrade/664.htmlhttps://shibashake.com/wordpress-theme/expand-the-wordpress-quick-edit-menu 后一篇 ...
分类:
其他好文 时间:
2019-08-08 14:53:49
阅读次数:
126
(原题:https://www.python123.io/student/courses/934/groups/8102/problems/programmings/6078) Solution: Notes: (1)else在二分支、多分支中,为了把各中情况都考虑周全,有良好的用户体验,最好写上, ...
分类:
其他好文 时间:
2019-08-08 00:15:15
阅读次数:
77
https://mp.weixin.qq.com/s/JGXe2CmOdTweHjRJPOgiLg 1. 斯坦福《概率与统计(Probability and Statistics)》 链接:https://online.stanford.edu/courses/gse-yprobstat-proba ...
分类:
其他好文 时间:
2019-08-06 13:51:08
阅读次数:
123
problem:https://leetcode.com/contest/biweekly-contest-5/problems/parallel-courses/ 这道题是leetcode双周赛的一道hard题,实际上难度并没有那么高。题目是给定课程的预修关系,比如要学习课程B,必须先学过课程A, ...
分类:
编程语言 时间:
2019-07-28 21:29:53
阅读次数:
127
链接: https://vjudge.net/problem/HDU 1083 author=HUCM201732 题意: 题目大意: 一共有N个学生跟P门课程,一个学生可以任意选一 门或多门课,问是否达成: 1.每个学生选的都是不同的课(即不能有两个学生选同一门课) 2.每门课都有一个代表(即P门 ...
分类:
其他好文 时间:
2019-07-10 01:27:10
阅读次数:
82