码迷,mamicode.com
首页 >  
搜索关键字:roman    ( 1299个结果
【LeetCode】Integer to Roman
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.public class Solution { public String int...
分类:其他好文   时间:2014-05-10 20:31:10    阅读次数:335
Leetcode: Roman to Integer, Integer to Roman
Roman to IntegerInteger to Roman这两题纯粹是模拟题,关键就是理解罗马计数,直接上代码吧class Solution {public: int romanToInt(string s) { int result = 0; for (...
分类:其他好文   时间:2014-05-09 09:46:36    阅读次数:298
uva :185 - Roman Numerals(dfs)
题目:uva :185 - Roman Numerals 题目大意:给出一个字符串的等式,问这个字符串是否是罗马等式吗?有符合的阿拉伯等式吗?前者是就输出correct or incorrect ,后者就得分情况: ambiguous 能组成阿拉伯等式的字母组合大于等于2, valid 能组成阿拉伯等式的字母组合只有1种impossible 没有符合阿拉伯等式的字母组合。解...
分类:其他好文   时间:2014-05-09 06:06:02    阅读次数:329
WPF样式和资源2
Time New Roman 18 Bold1:资源里定义了三个资源,分别设置对象属性接下来应用资源:2:另一种方式:(WPF中的一个元素都可以使用一个样式,只能使用一个样式)创建一个独立的资源: 应用这个独立的样式资源a CustomizedStyle类的属性:Setters:设置属性值...
分类:其他好文   时间:2014-05-09 03:56:46    阅读次数:266
Leetcode: Roman to Integer
一次通过: 1 public class Solution { 2 public int romanToInt(String s) { 3 int sum = 0; 4 int[] num = new int[s.length()]; 5 if...
分类:其他好文   时间:2014-05-08 08:24:26    阅读次数:233
CSS为英文和中文字体分别设置不同的字体
font-family的调用方法: div { font-family:Arial,'Times New Roman','Microsoft YaHei',SimHei; font:bold 12px/0.75em Arial,'Times New Roman','Microsoft YaHei',SimHei; } 根据font-family的原则,假如客户终端不认...
分类:Web程序   时间:2014-05-07 12:27:13    阅读次数:468
[ACM] hdu 1029 Ignatius and the Princess IV (动归或hash)
Ignatius and the Princess IV Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32767K (Java/Other) Total Submission(s) : 7   Accepted Submission(s) : 3 Font: Times New Roman | Verdana | ...
分类:其他好文   时间:2014-05-05 13:01:52    阅读次数:325
[ACM] hdu 1260 Tickets (动态规划)
Tickets Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 4   Accepted Submission(s) : 2 Font: Times New Roman | Verdana | Georgia Font Size: ←...
分类:其他好文   时间:2014-05-03 21:16:19    阅读次数:360
[ACM] hdu 1087 Super Jumping! Jumping! Jumping! (动态规划)
Super Jumping! Jumping! Jumping! Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 6   Accepted Submission(s) : 5 Font: Times New Roman | Verdan...
分类:其他好文   时间:2014-05-03 16:47:07    阅读次数:262
1299条   上一页 1 ... 128 129 130
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!