摘要:
B. Two Buttons time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output B. Two Buttons time limit 阅读全文
摘要:
Given a n × n matrix A and a positive integer k, find the sum S = A + A2 + A3 + … + Ak. Given a n × n matrix A and a positive integer k, find the sum 阅读全文
摘要:
B. Ilya and Queries time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output B. Ilya and Queries 阅读全文
摘要:
时间限制:1秒 空间限制:32768K 时间限制:1秒 空间限制:32768K 度度熊有一个N个数的数组,他想将数组从小到大 排好序,但是萌萌的度度熊只会下面这个操作:任取数组中的一个数然后将它放置在数组的最后一个位置。问最少操作多少次可以使得数组从小到大有序? 输入描述: 首先输入一个正整数N,接 阅读全文
摘要:
时间限制:1秒 空间限制:32768K 时间限制:1秒 空间限制:32768K 一个数轴上共有N个点,第一个点的坐标是度度熊现在位置,第N-1个点是度度熊的家。现在他需要依次的从0号坐标走到N-1号坐标。但是除了0号坐标和N-1号坐标,他可以在其余的N-2个坐标中选出一个点,并直接将这个点忽略掉,问 阅读全文
摘要:
Red and Black Description There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a bla 阅读全文
摘要:
棋盘问题 Description 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C。 Input 输入含有多组测试数据。 每组数据的第一行是两个正整数 阅读全文
摘要:
A. The Contest time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output A. The Contest time limit 阅读全文
摘要:
判断一个数是否为回文数字,如1,2,3,121,1001,999都是回文数字,10,9898就不是回文数字。 解法:判断对称中心两端数字是否相同。 代码如下: bool isPalindrome(int x) { if (x<0 || (x != 0 && x % 10 == 0)) return 阅读全文