Given a word, you need to judge whether the usage of capitals in it is right or not. We define the usage of capitals in a word to be right when one of ...
编程--在线提交系统(Online Judge) 浙江大学 Online Judge(ZOJ)http://acm.zju.edu.cn国内最早也是最有名气的OJ,有很多高手在上面做题。特点是数据比较刁钻,经常会有你想不到的边界数据,很能考验思维的全面性。 北京大学 Online Judge(POJ ...
分类:
其他好文 时间:
2019-12-29 00:48:00
阅读次数:
87
enigmavb vitual folder https://enigmaprotector.com/assets/files/enigmavb.exe File Path - points to the real file that will be embedded. This file must ...
分类:
其他好文 时间:
2019-12-27 11:37:21
阅读次数:
62
原题链接在这里:https://leetcode.com/problems/find-the-town-judge/ 题目: In a town, there are N people labelled from 1 to N. There is a rumor that one of these ...
分类:
其他好文 时间:
2019-12-16 09:24:14
阅读次数:
95
C 仓鼠与奶茶 时间限制: 2000/1000 MS (Java/Others) 内存限制: 65536/32768 K (Java/Others) Special Judge: 无 问题描述 小仓鼠是武汉仓鼠大学(Wuhan Hamster University, WHU)的一名普通学生。仓鼠们 ...
分类:
其他好文 时间:
2019-12-10 01:10:15
阅读次数:
115
这个式子是是由$A\sim A+N$组成的,那么$A\sim A+N$就只能等于$0\sim N 1$,因此我们每次对$A\sim A+N$的取值做一个新的排列,然后judge一下当前状态是否可行,若可行直接输出解。 显然$N!$过于庞大,需要剪枝。 剪枝: 假设一个这种情况: ~~~ XXXAXX ...
分类:
其他好文 时间:
2019-11-14 21:42:21
阅读次数:
49
题目链接: "HDU 5183" Problem Description When given an array $(a_0,a_1,a_2,?a_{n?1})$ and an integer $K$, you are expected to judge whether there is a pai ...
分类:
其他好文 时间:
2019-11-09 00:09:19
阅读次数:
98
题意: 输入三个正整数N,K,M(N<=10000,K<=5,M<=100000),接着输入一行K个正整数表示该题满分,接着输入M行数据,每行包括学生的ID(五位整数1~N),题号和该题得分(-1表示没通过编译)。输出排名,学生ID,总分和每一题的得分,第一优先为总分降序,第二优先为题目AC数降序, ...
分类:
其他好文 时间:
2019-11-07 13:07:38
阅读次数:
71
地址 https://algospot.com/judge/problem/read/GALLERY 分析 如图 显然是需要在 0 1 2三个点进行监控即可。(0 2 3 也可) 根据题意,不存在回路,也就是不重复经过两画廊之间的走廊是不可能在两画廊之间进行走动的 我们可以将该图看成一棵树,深度优先 ...
分类:
编程语言 时间:
2019-11-02 22:05:59
阅读次数:
99
/* 判断单链表是否存在环 1)暴力:双层循环遍历(n^2) 2)双指针:快指针fast=NULL,慢指针slow=NULL int judge(link head) { if(NULL==head) return false; link fast = head, slow = head; whil... ...
分类:
其他好文 时间:
2019-10-30 20:03:24
阅读次数:
113