
PAT (Advanced Level)
文章平均质量分 79
绿色小光头
这个作者很懒,什么都没留下…
展开
-
1140. Look-and-say Sequence
Look-and-say SequenceLook-and-say sequence is a sequence of integers as the following:D, D1, D111, D113, D11231, D112213111, … where D is in [0, 9] except 1. The (n+1)st number is a kind of descr...原创 2018-03-20 13:23:49 · 234 阅读 · 0 评论 -
1030. Travel Plan
Travel PlanA traveler’s map gives the distances between cities along the highways, together with the cost of each highway. Now you are supposed to write a program to help a traveler to decide the sh...原创 2018-03-11 16:11:27 · 132 阅读 · 0 评论 -
1070. Mooncake
MooncakeMooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional mooncakes according to the region’s cul...原创 2018-03-03 16:43:03 · 258 阅读 · 0 评论 -
1029. Median
MedianGiven an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1={11, 12, 13, 14} is 12, and the median of S2={9, 10, 15, 16, 17} is...原创 2018-03-03 15:55:17 · 206 阅读 · 0 评论 -
1031. Hello World for U
Hello World for UGiven any string of N (>=5) characters, you are asked to form the characters into the shape of U. For example, “helloworld” can be printed as:h d e l l r lowo That is, t...原创 2018-03-03 10:18:18 · 165 阅读 · 0 评论 -
1003. Emergency
EmergencyAs an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each cit...原创 2018-03-10 17:59:43 · 154 阅读 · 0 评论 -
1028. List Sorting
List SortingExcel can sort records according to any column. Now you are supposed to imitate this function.InputEach input file contains one test case. For each case, the first line contains two ...原创 2018-03-02 23:25:55 · 108 阅读 · 0 评论 -
1052. Linked List Sorting
Linked List SortingA linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key and a Next pointer to the nex...原创 2018-03-02 18:46:50 · 115 阅读 · 0 评论 -
1071. Speech Patterns
Speech PatternsPeople 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 narr...原创 2018-02-23 22:03:46 · 109 阅读 · 0 评论 -
1060. Are They Equal
Are They EqualIf a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0.123*105 with simple chopping. Now given the num...原创 2018-02-23 16:34:11 · 236 阅读 · 0 评论 -
1004. Counting Leaves
Counting LeavesA family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child.InputEach input file contains one test case. Each case star...原创 2018-03-11 21:36:51 · 165 阅读 · 0 评论 -
1020. Tree Traversals
Tree TraversalsSuppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to output the level order traversal se...原创 2018-03-04 23:35:01 · 133 阅读 · 0 评论 -
1100. Mars Numbers
Mars NumbersPeople on Mars count their numbers with base 13:Zero on Earth is called “tret” on Mars.The numbers 1 to 12 on Earch is called “jan, feb, mar, apr, may, jun, jly, aug, sep, oct, nov, ...原创 2018-03-12 10:57:11 · 172 阅读 · 0 评论 -
1141. PAT Ranking of Institutions
PAT Ranking of InstitutionsAfter each PAT, the PAT Center will announce the ranking of institutions based on their students’ performances. Now you are asked to generate the ranklist.Input Specific...原创 2018-03-20 11:30:24 · 419 阅读 · 0 评论 -
1143. Lowest Common Ancestor
Lowest Common AncestorThe lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants.A binary search tree (BST) is recursively defined as ...原创 2018-03-19 22:20:49 · 483 阅读 · 0 评论 -
1142. Maximal Clique
Maximal CliqueA clique is a subset of vertices of an undirected graph such that every two distinct vertices in the clique are adjacent. A maximal clique is a clique that cannot be extended by includ...原创 2018-03-19 21:36:40 · 208 阅读 · 0 评论 -
1021. Deepest Root
Deepest RootA graph which is connected and acyclic can be considered a tree. The height of the tree depends on the selected root. Now you are supposed to find the root that results in a highest tree...原创 2018-03-13 15:02:21 · 190 阅读 · 0 评论 -
1086. Tree Traversals Again
Tree Traversals AgainAn inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the keys numbered from 1 to 6)...原创 2018-03-06 10:34:31 · 151 阅读 · 0 评论 -
1099. Build A Binary Search Tree
Build A Binary Search TreeA Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with keys less than ...原创 2018-03-06 09:26:22 · 122 阅读 · 0 评论 -
1043. Is It a Binary Search Tree
Is It a Binary Search TreeA Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:The left subtree of a node contains only nodes with keys less than ...原创 2018-03-05 20:30:02 · 245 阅读 · 0 评论 -
1053. Path of Equal Weight
Path of Equal WeightGiven a non-empty tree with root R, and with weight Wi assigned to each tree node Ti. The weight of a path from R to L is defined to be the sum of the weights of all the nodes al...原创 2018-03-05 11:02:48 · 163 阅读 · 0 评论 -
1005. Spell It Right
Spell It RightGiven a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English.Input Specification:Each input file contains on...原创 2018-02-25 22:08:29 · 140 阅读 · 0 评论 -
1078. Hashing
HashingThe task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbers. The hash function is defined to be “H(key...原创 2018-03-09 22:49:47 · 118 阅读 · 0 评论 -
1076. Forwards on Weibo
Forwards on WeiboWeibo is known as the Chinese version of Twitter. One user on Weibo may have many followers, and may follow many other users as well. Hence a social network is formed with followers...原创 2018-03-09 18:40:16 · 119 阅读 · 0 评论 -
1034. Head of a Gang
Head of a GangOne way that the police finds the head of a gang is to check people’s phone calls. If there is a phone call between A and B, we say that A and B is related. The weight of a relation is...原创 2018-03-09 14:37:56 · 182 阅读 · 0 评论 -
1018. Public Bike Management
Public Bike ManagementThere is a public bike service in Hangzhou City which provides great convenience to the tourists from all over the world. One may rent a bike at any station and return it to an...原创 2018-03-15 18:16:36 · 1504 阅读 · 1 评论 -
1015. Reversible Primes
Reversible PrimesA reversible prime in any number system is a prime whose “reverse” in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reve...原创 2018-02-28 21:05:50 · 104 阅读 · 0 评论 -
1051. Pop Sequence
Pop SequenceGiven a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, …, N and pop randomly. You are supposed to tell if a given sequence of numbers is a possible pop s...原创 2018-03-08 16:14:10 · 203 阅读 · 0 评论 -
1066. Root of AVL Tree
Root of AVL TreeAn AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than o...原创 2018-03-08 12:19:55 · 157 阅读 · 0 评论 -
1050. String Subtraction
String SubtractionGiven two strings S1 and S2, S = S1 - S2 is defined to be the remaining string after taking all the characters in S2 from S1. Your task is simply to calculate S1 - S2 for any given...原创 2018-03-08 10:56:20 · 140 阅读 · 0 评论 -
1008. Elevator
ElevatorThe highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It c...原创 2018-02-26 21:06:30 · 114 阅读 · 0 评论 -
1048. Find Coins
Find CoinsEva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall which could accept all kinds of coins as paymen...原创 2018-02-26 14:53:00 · 241 阅读 · 0 评论 -
1093. Count PAT's
Count PAT’sThe string APPAPT contains two PAT’s as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is formed by the 3rd, the 4th, and the 6th char...原创 2018-02-26 14:13:12 · 172 阅读 · 0 评论 -
1039. Course List for Student
Course List for StudentZhejiang 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 fo...原创 2018-02-22 11:33:20 · 834 阅读 · 1 评论 -
1064. Complete Binary Search Tree
Complete Binary Search TreeA Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: * The left subtree of a node contains only nodes with keys less tha...原创 2018-02-20 12:51:41 · 169 阅读 · 0 评论 -
1058. Prime Factors
Prime FactorsGiven any positive integer N, you are supposed to find all of its prime factors, and write them in the format N = p1^k1 * p2^k2 *…*pm^km.Input Specification:Each input file contains...原创 2018-02-20 12:51:17 · 187 阅读 · 0 评论 -
1010. Radix
RadixGiven a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer is “yes”, if 6 is a decimal number and 110 is a binary number.Now for any pair of posi...原创 2018-03-15 23:48:52 · 227 阅读 · 0 评论 -
1032. Sharing
SharingTo store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share the same sublist if they share the same suffix. For...原创 2018-03-01 22:09:38 · 140 阅读 · 0 评论 -
1063. Set Similarity
Set SimilarityGiven two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Nc is the number of distinct common numbers shared by the two sets, and Nt is the total number...原创 2018-02-23 10:36:36 · 362 阅读 · 0 评论 -
1009. Product of Polynomials
Product of Polynomialshis time, you are supposed to find A*B where A and B are two polynomials.Input Specification:#Each input file contains one test case. Each case occupies 2 lines, and each l...原创 2018-03-15 19:43:01 · 267 阅读 · 0 评论