A. Roman and Browser 题意:给出k,让你求b,使所有位置c(c满足$ c = b + i * k$) 的标签全部消失,使1和-1的数量相差最大,求b。 枚举。 #include<bits/stdc++.h> using namespace std; typedef long lo ...
分类:
其他好文 时间:
2019-02-01 17:16:17
阅读次数:
205
在Linux下做文档、作图的时候,可能需要用到Arial和Times New Roman等字体。但是由于版权问题,Linux一般是不直接提供这些字体的。 注意字体也是有版权的!不过有版权也不代表一定会收费。 如何安装呢? 以Ubuntu为例,执行以下指令即可: 由于前面提到版权问题,虽然这部分字体不 ...
分类:
系统相关 时间:
2019-01-30 11:17:59
阅读次数:
991
[toc] 题目链接 "Integer to Roman LeetCode" 注意点 考虑输入为0的情况 解法 解法一:从大到小考虑1000,900,500,400,100,90,50,40,10,9,5,4,1这些数字,大于就减去,直到为0。时间复杂度为O(n) 小结 终于有一次击败100%了!! ...
分类:
其他好文 时间:
2019-01-28 01:22:36
阅读次数:
158
ETX2250/ETF5922 Data Visualisation andAnalyticsAssignment 1: Visualisation – The ArtsSubmission instructionsThis assignment comprises 15% of the asses ...
分类:
其他好文 时间:
2019-01-27 22:07:31
阅读次数:
181
算法描述: Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, just two ...
分类:
其他好文 时间:
2019-01-27 16:38:00
阅读次数:
176
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, just two one's ...
分类:
其他好文 时间:
2019-01-26 11:03:53
阅读次数:
117
[toc] 题目链接 "Roman to Integer LeetCode" 注意点 大的数字在小的数字左边是正常情况,要考虑的是小的数字在大的数字右边的那8种情况 解法 解法一:从右至左,对于出现的每个字符逐个判断,累加。时间复杂度为O(n) 解法二:从左至右。如果之前的数字小于当前的就减去之前的 ...
分类:
其他好文 时间:
2019-01-25 16:32:18
阅读次数:
146
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. For example, two is written as II in Roman numeral, just two one's ...
分类:
其他好文 时间:
2019-01-24 20:14:53
阅读次数:
160
Eclipse默认导包快捷键为Ctrl + Shift + O ,在没有修改过快捷方式的情况下如果无法使用,通常是和其他软件发生了冲突,比如搜狗输入法。 此时可以尝试在Preferences > General > Keys 搜索关键字 Organize Imports,尝试修改Binding参数下 ...
分类:
系统相关 时间:
2019-01-17 19:49:52
阅读次数:
1242