算法笔记
一条咸鱼MOON
这个作者很懒,什么都没留下…
展开
-
[算法笔记]1059 Prime Factors (25 分)
1059 Prime Factors (25 分)Input Specification:Each input file contains one test case which gives a positive integer NNN in the range of long int.Output Specification:Sample Input:9753246...原创 2019-07-07 18:49:57 · 205 阅读 · 0 评论 -
《算法笔记》6.1小节 问题 A: Course List for Student (25)
题目描述Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the registered course list for each student who ...原创 2019-07-18 16:22:09 · 186 阅读 · 0 评论 -
《算法笔记》6.1小节 问题 B: Student List for Course (25)
题目描述Zhejiang University has 40000 students and provides 2500 courses. Now given the registered course list of each student, you are supposed to output the student name lists of all the courses.输入...原创 2019-07-18 16:41:20 · 127 阅读 · 0 评论 -
《算法笔记》6.2小节 问题 A: Set Similarity (25)
题目描述Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Ncis the number of distinct common numbers shared by the two sets, and Ntis the total number of distin...原创 2019-07-19 16:04:54 · 226 阅读 · 0 评论 -
《算法笔记》6.4小节 问题 A: Speech Patterns (25)
题目描述People often have a preference among synonyms of the same word. For example, some may prefer "the police", while others may prefer "the cops". Analyzing such patterns can help to narrow down a s...原创 2019-07-19 19:33:22 · 197 阅读 · 0 评论 -
《算法笔记》6.8小节 问题 A: 重心在哪里
题目描述每个人都知道牛顿发现万有引力的故事。自从牛顿发现万有引力后,人们用万有引力理论解决了非常多的问题。不仅如此,我们也知道了每个物体都有自己的重心。现在,给你三角形三个顶点的坐标,你能计算出三角形的重心吗?输入题目包含多组测试数据。第一行输入一个正整数n,表示测试数据的个数,当n=0时,输入结束。接下来n行,每行包含6个数字x1,y1,x2,y2,x3,y3,表示三角形三个顶点...原创 2019-07-20 16:03:22 · 176 阅读 · 0 评论 -
《算法笔记》6.9小节 问题 B: 全排列
题目描述给定一个由不同的小写字母组成的字符串,输出这个字符串的所有全排列。我们假设对于小写字母有'a' < 'b' < ... < 'y' < 'z',而且给定的字符串中的字母已经按照从小到大的顺序排列。输入输入只有一行,是一个由不同的小写字母组成的字符串,已知字符串的长度在1到6之间。输出输出这个字符串的所有排列方式,每行一个排列。要求字母序比较小的排...原创 2019-07-20 16:41:38 · 124 阅读 · 0 评论 -
《算法笔记》6.9小节 问题 C: 数组逆置
题目描述输入一个字符串,长度小于等于200,然后将数组逆置输出。输入测试数据有多组,每组输入一个字符串。输出对于每组输入,请输出逆置后的结果。样例输入<span style="color:#333333">tianqin</span>样例输出<span style="color:#333333">niqnait</s...原创 2019-07-20 17:06:04 · 204 阅读 · 0 评论