1589: [Usaco2008 Dec]Trick or Treat on the Farm 采集糖果Time Limit:5 SecMemory Limit:64 MBSubmit:400Solved:220[Submit][Status]Description每年万圣节,威斯康星的奶牛们都要打...
分类:
其他好文 时间:
2014-10-26 15:38:00
阅读次数:
130
use databaseName
declare @tblname char(100)
declare @sql char(5000)
declare table_cursor cursor for select name from sysobjects where name like 'tb_card[_]%' and name'Tb_card_item' and name'tb_c...
分类:
数据库 时间:
2014-10-25 23:02:38
阅读次数:
177
CodeForces 462B Appleman and Card Game(贪心)...
分类:
移动开发 时间:
2014-10-25 21:30:23
阅读次数:
228
http://acm.nyist.net/JudgeOnline/problem.php?pid=6喷水装置(一)时间限制:3000ms | 内存限制:65535KB难度:3描述现有一块草坪,长为20米,宽为2米,要在横中心线上放置半径为Ri的喷水装置,每个喷水装置的效果都会让以它为中心的半径为实数...
分类:
其他好文 时间:
2014-10-25 19:59:25
阅读次数:
197
DescriptionIn the two-player game "Two Ends", an even number of cards is laid out in a row. On each card, face up, is written a positive integer. Play...
分类:
其他好文 时间:
2014-10-25 18:32:56
阅读次数:
207
read and write file is a very common operation regarding file mainuplation.However, the powerfull getline only can read line by line(with new line cha...
分类:
其他好文 时间:
2014-10-24 12:54:51
阅读次数:
161
括号匹配(二)
时间限制:1000 ms | 内存限制:65535 KB
难度:6
描述给你一个字符串,里面只包含"(",")","[","]"四种符号,请问你需要至少添加多少个括号才能使这些括号匹配起来。
如:
[]是匹配的
([])[]是匹配的
((]是不匹配的
([)]是不匹配的
输入第一行输入一个正整数N,表示测试数据组数(N
每组测试数...
分类:
其他好文 时间:
2014-10-22 14:39:54
阅读次数:
195
九的余数
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述
现在给你一个自然数n,它的位数小于等于一百万,现在你要做的就是求出这个数整除九之后的余数。
输入
第一行有一个整数m(1
随后m行每行有一个自然数n。
输出
输出n整除九之后的余数,每次输出占一行。
样例输入
3
4
5
465456541
样例输出
4...
分类:
其他好文 时间:
2014-10-21 23:19:29
阅读次数:
346
单调递增子序列(二)
时间限制:1000 ms | 内存限制:65535 KB
难度:4
描述
给定一整型数列{a1,a2...,an}(0
如:1 9 10 5 11 2 13的最长单调递增子序列是1 9 10 11 13,长度为5。
输入有多组测试数据(
每组测试数据的第一行是一个整数n表示序列中共有n个整数,随后的下一行里有n个整数,表示...
分类:
其他好文 时间:
2014-10-21 21:41:09
阅读次数:
209
上次说过使用主题,应用Material Design的样式,同时卡片布局也是Material Design的重要组成部分,今天来写写。
在程序中创建复杂的Material Design 样式的 List和Card,可以使用RecyclerView和CardView组件,这两个组件是在最新的support v7包(version 21)中提供的。因此需要引入依赖包。CardView,本质上就是一个比较符合Material Design的组件,使用Card布局,效果更好。很多人之前可能也使用一些CardUi,谷...
分类:
移动开发 时间:
2014-10-21 19:44:18
阅读次数:
365