java源码和class文件 源码: 使用editplus 经过hex viewer解压方式打开的Class文件: Class文件组成: 1、00000000~00000003 (u4 0xCA FE BA BE)魔数 Magic Number 2、00000004~00000005(u2 0x 0 ...
分类:
其他好文 时间:
2018-10-28 11:07:10
阅读次数:
189
[FROM] https://blog.csdn.net/themagickeyjianan/article/details/80333645 1.一般的做法(直接git merge) Git相对于CVS和SVN的一大好处就是merge非常方便,只要指出branch的名字就好了,如: 2.改进版本: ...
分类:
其他好文 时间:
2018-10-26 19:46:28
阅读次数:
390
时间:2018年10月22日,学习任何物事都有个探索过程。欢迎留言 本机环境: 1、win7 64 旗舰版 2、Qt 5.11.2(MSVC 2015,32 bit) 3、Python 3.7.0 (32-bit) 4、PythonQt 3.2 准备工作: 1、安装最新Qt5.11.2,地址http ...
分类:
编程语言 时间:
2018-10-22 17:49:22
阅读次数:
297
Implement a magic directory with buildDict, and search methods. For the method buildDict, you'll be given a list of non-repetitive words to build a di ...
分类:
其他好文 时间:
2018-10-18 11:03:40
阅读次数:
276
思路 打表找规律,发现结果是,2的(a二进制位为1总数)次方 代码 include using namespace std; define ll long long int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); l ...
分类:
其他好文 时间:
2018-10-15 20:40:13
阅读次数:
163
[TOC] "比赛链接" A.Make a triangle! 不放了。 B.Equations of Mathematical Magic 比赛结束后 D.Labyrinth(BFS) 因为BFS一般是可以保证到达一个点时代价最小,所以考虑BFS。 本题有向左和向右两个代价。显然如果上下没有格子阻 ...
分类:
其他好文 时间:
2018-10-15 14:41:47
阅读次数:
167
A Make a triangle! 题意:给定三根线段,问最少要延长多少才能拼成一个三角形。 数学题。 B Equations of Mathematical Magic 题意:求$a (a \oplus b) x=0 $的非负整数解的个数。 打表发现是$a$在二进制下$1$的数量。 C Oh T ...
分类:
其他好文 时间:
2018-10-14 21:56:54
阅读次数:
137
给出n,m。从n个数中选几个相乘,再%m。能取到的最大值和取法。 用dp[i][j]记录前i行能否取到j这个结果。那么dp[i][j]至少等于dp[i-1][j],还能等于所有的dp[i-1][j]*arr[i]%m。要输出方案,那么如果在记录的过程中,j*arr[i]%m在i-1没出现说明是新得出 ...
分类:
系统相关 时间:
2018-10-13 22:52:25
阅读次数:
183
[ZJOI2010]排列计数 题目描述 称一个1,2,...,N的排列P1,P2...,Pn是Magic的,当且仅当2Pi/2. 计算1,2,...N的排列中有多少是Magic的,答案可能很大,只能输出模P以后的值 输入输出格式 输入格式: 输入文件的第一行包含两个整数 n和p,含义如上所述。 输出 ...
分类:
其他好文 时间:
2018-10-11 22:38:08
阅读次数:
174