to be myself
发布时间:2013-03-02 17:09:32
Problem: 3006 User: angrad Memory: 136K Time: 250MS Language: C Result: Accepted 点击(此处)折叠或打开#include <stdio.h>int IsPrime(int a){  .........【阅读全文】
发布时间:2013-03-02 17:07:46
点击(此处)折叠或打开#include <stdio.h>typedef unsigned int uint;int IsPrime(uint a){ uint i; if(1 == a) { .........【阅读全文】
发布时间:2013-03-02 17:04:06
点击(此处)折叠或打开#include struct{ ints; int f;}MovingEvent[201];void swap(int *a, int *b){ int .........【阅读全文】
发布时间:2013-03-02 17:02:56
#include (此处略>40000个的字,就是个2-10000之间的素数数组)点击(此处)折叠或打开int main(){ intnum,i,count,j,n; while(scanf("%d",&num)==1&&nu.........【阅读全文】
发布时间:2013-03-02 17:00:43
举例说说这一题吧,比如下面ABBCFEA(假设为dst)CCGGHJB(假设为src)不关心怎么从src变到dst,我先qsort一遍,两者就变成:AABBCEFBCCGGHJ不深度题目,人工的都以为这个是NO.但非也,我们再找一下两个串的相同字母数字序列.两者分别是:2211112211这个你应该了解吧,就是AA为2,BB为2,C为1,E为1,F为1.然后再.........【阅读全文】