Given a string, we can "shift" each of its letter to its successive letter, for example:"abc" -> "bcd". We can keep "shifting" which forms the sequenc...
分类:
其他好文 时间:
2015-10-11 11:30:10
阅读次数:
170
题意: 将一个整数表示成4个bit的bcd码就成了一个01串,如果该串中出现了部分病毒串,则是危险的。给出n个病毒串(n 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #includ...
分类:
其他好文 时间:
2015-10-06 18:08:21
阅读次数:
232
1diamond ******** *n = 5_max = 2 * n - 1a = [("*"*e).center(_max," ")for e in [2*i - 1 if i bcd#!/usr/bin/env python#coding:utf-8import syst = int(raw...
分类:
编程语言 时间:
2015-09-17 00:50:06
阅读次数:
304
Problem:Given a string, we can "shift" each of its letter to its successive letter, for example:"abc" -> "bcd". We can keep "shifting" which forms the...
分类:
其他好文 时间:
2015-09-14 09:22:44
阅读次数:
497
string array = new string[]{"abc", "bcd", "efg"};string bArray = new string[3];array.CopyTo(bArray, 0);//数组array从下标为0开始复制元素到bArray中1. 方法 CopyTo(); 源数....
分类:
编程语言 时间:
2015-09-12 17:35:29
阅读次数:
180
1、进入win102、下载EasyBCD,360软件管家里面有,version=2.23、启动软件,工具箱里面选择“BCD部署”→MBR配置选项中选“在MBR中安装Windows Vista/7的bootloader”→点击编写MBR4、右键“此电脑”→管理→管理磁盘→删除ubuntu所在分区→新建...
分类:
Windows程序 时间:
2015-09-12 15:57:52
阅读次数:
1338
家里计算机系统 windows 10 全新安装。原本是双系统的,还有一个ubuntu。 windows 10 安装以后,恢复ubuntu就是问题了。最初的方法是利用easybcd修改bcd记录。操作是成功的,但系统重新启动后,经常黑屏无法继续。经过尝试,新的图形界面没有正常显示。鼠标或键盘如果尝试按...
题目链接:BCD Code
解析:n个病毒串,问给定区间上有多少个转换成BCD码后不包含病毒串的数。
非常神奇的题目。。经典的 AC自动机 + 数位DP 的题目。
首先使用AC自动机,得到bcd[i][j]表示状态i,加了数字j以后到达的状态,为-1表示不能转移
然后就是数位DP了
注意记录为0的状态
AC代码:
#include
#include ...
分类:
其他好文 时间:
2015-08-18 14:11:18
阅读次数:
113
bool AtoBCD(unsigned char* Asc,unsigned char* BCD,int len) { int i; unsigned char ch; //高位 unsigned char cl; //低位 unsigned char temp1; uns...
分类:
其他好文 时间:
2015-08-08 18:02:34
阅读次数:
176
比较快速的往redis中导入mysql数据的方法1. 当向Redis中一次性导入大数据时 可以将所有的插入命令写到一个txt文件中,如插入 key-value SET test0 abc SET test1 bcd SET test3 abcd 每个SET命令前要留一个空格,保存为data.tx.....
分类:
数据库 时间:
2015-08-05 00:36:08
阅读次数:
242