07 2017 档案
摘要:Saruman's Army Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10994 Accepted: 5555 Description Saruman the White must lead his army along
阅读全文
摘要:Best Cow Line Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 25616 Accepted: 6984 Description FJ is about to take his N (1 ≤ N ≤ 2,000) co
阅读全文
摘要:Curling 2.0 Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 21723 Accepted: 8842 Description On Planet MM-21, after their Olympic games thi
阅读全文
摘要:Meteor Shower Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 21055 Accepted: 5499 Description Bessie hears that an extraordinary meteor sh
阅读全文
摘要:B. Crossword solving time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output B. Crossword solving
阅读全文
摘要:Hopscotch Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4385 Accepted: 2924 Description The cows play the child's game of hopscotch in a
阅读全文
摘要:Backward Digit Sums Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 7634 Accepted: 4398 Description FJ and his cows enjoy playing a mental
阅读全文
摘要:next_permutation()可以按字典序生成所给区间的全排列。 在STL中,除了next_permutation()外,还有一个函数prev_permutation(),两者都是用来计算排列组合的函数。前者是求出下一个排列组合,而后者是求出上一个排列组合。所谓“下一个”和“上一个”,书中举了
阅读全文
摘要:Smallest Difference Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12158 Accepted: 3306 Description Given a number of distinct decimal dig
阅读全文
摘要:Red and Black Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 36371 Accepted: 19731 Description There is a rectangular room, covered with s
阅读全文
摘要:Lake Counting Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 36208 Accepted: 17982 Description Due to recent rains, water has pooled in va
阅读全文
摘要:Ants Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 19297 Accepted: 8059 Description An army of ants walk on a horizontal pole of length l
阅读全文
摘要:C. String Reconstruction time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Ivan had string
阅读全文
摘要:B. Black Square time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Polycarp has a checkered
阅读全文
摘要:unique()是c++里面的一个去重函数,包含在<iostream>中。 该函数将重复的元素移至容器的末尾,返回的为前面的无重复项的尾地址。 由于返回的是地址,所以经常需要转换为数值使用。 比如: 返回的ans值为5,,前5项为1 2 3 4 5。
阅读全文
摘要:unique()是c++里面的一个去重函数,包含在<iostream>中。 该函数将重复的元素移至容器的末尾,返回的为前面的无重复项的尾地址。 由于返回的是地址,所以经常需要转换为数值使用。 比如: 返回的ans值为5,,前5项为1 2 3 4 5。
阅读全文
摘要:C. Jury Marks time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Polycarp watched TV-show w
阅读全文
摘要:B. Petya and Exam time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output It's hard times now. T
阅读全文
摘要:B. Keyboard Layouts time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output There are two popular
阅读全文
摘要:A. Unimodal Array time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Array of integers is un
阅读全文
摘要:1489 蜥蜴和地下室 去掉头尾就可以吃了 dfs AC代码:
阅读全文
摘要:1521 一维战舰 对于n个格子,可放置战舰个数为(n+1)/(a+1),当我们指定一个点时,则减少(right-left)/(a+1)-(x-left)/(a+1)-(right-x)/(a+1)。 每做一次指定点,就做一次减法运算,直至总个数<k或指定m次完毕。 AC代码:
阅读全文
摘要:现在有n个货物,第i个货物的重量是 2wi 。每次搬的时候要求货物重量的总和是一个2的幂。问最少要搬几次能把所有的货物搬完。 样例解释: 1,1,2作为一组。 3,3作为一组。 现在有n个货物,第i个货物的重量是 2wi 。每次搬的时候要求货物重量的总和是一个2的幂。问最少要搬几次能把所有的货物搬完
阅读全文
摘要:Noder现在上初三了,正在开始复习中考。他每天要计算型如 (a× a× a× ⋯× a)n个a 的式子。 其中 0.0<a<99.999,0<n<26 。 虽然Noder会计算,但是老是算错,现在他想要你来写一个程序输出正确的结果,以便他核对
阅读全文