码迷,mamicode.com
首页 >  
搜索关键字:the story of the sto    ( 674个结果
POJ3207-Ikki's Story IV - Panda's Trick(2-SAT)
Ikki's Story IV - Panda's Trick Time Limit: 1000MS   Memory Limit: 131072K Total Submissions: 7841   Accepted: 2900 Description liympanda, one of Ikki’s friend, likes p...
分类:其他好文   时间:2014-08-07 19:16:01    阅读次数:316
HDU 3207 Ikki's Story IV - Panda's Trick(图论-2SAT,图论-tarjan)
HDU 3207 Ikki's Story IV - Panda's Trick(图论-2SAT,图论-tarjan) 题目大意: n个点,m条线段,线段可以放在环的外面和里面,问是否找到不相交的方案。 解题思路: 用2SAT的方法,根据矛盾关系连边,最后tarjan完后判断是否有矛盾边存在。...
分类:其他好文   时间:2014-08-05 22:48:50    阅读次数:368
HDU 3988 Harry Potter and the Hide Story(数论-整数和素数)
题目大意: 给定n和k, 求 n! 能被 k^i 整除时,i 的最大取值。 解题思路: 将k分解质因素,问题变为,(1×2×3×...×n) 要被 ( p1^(i*a1) × p2^(i*a2) × ... × pn^(i*an) ) 整除,即分子中各分母的质因数的幂次要大于等于分母。 所以根据k的各质因素,求出满足各质因数的幂次 分子>=分母 的关系限制i,算出最大的i即可。 这题要用到unsigned long long,比较坑。。...
分类:其他好文   时间:2014-08-03 18:08:25    阅读次数:299
HDU 3988 Harry Potter and the Hide Story(数论-整数和素数)
HDU 3988 Harry Potter and the Hide Story(数论-整数和素数) 题目大意: 给定 n和k , 求 n! % k^i 等于0时,i 的最大取值是多少? 解题思路: 将 k分解质因素,n也根据k的质因素求出关系限制i,最后算出最大的i即可。...
分类:其他好文   时间:2014-07-31 17:14:37    阅读次数:220
用户故事(User Story)
摘要: 一件用户通过系统完成他一个有价值的目标(买一罐饮料)的事。这样的过程就叫“用户案例(user case)”或者“用户故事(user story)”。本文描述了敏捷开发的技巧:如何以用户故事管理项目.什么是用户故事(user story) 假定这个项目的客户是个饮料自动售货机的制造商。他们要求...
分类:其他好文   时间:2014-07-30 12:10:03    阅读次数:273
HDU3988-Harry Potter and the Hide Story(数论-质因数分解)
Harry Potter and the Hide Story Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 2193    Accepted Submission(s): 530 Problem Descripti...
分类:其他好文   时间:2014-07-30 01:03:32    阅读次数:245
a love story,scan slowly
应用商店的小镜子A LVOE STORYI mean I knew it was ending, but I was still there, doing the same job I had been doing for the last 8 years. So my day to day exp...
分类:其他好文   时间:2014-07-28 23:44:54    阅读次数:374
django - from django.db.models import F - class F
F() 的执行不经过 python解释器,不经过本机内存,是生成 SQL语句的执行。# Tintin filed a news story!reporter = Reporters.objects.get(name='Tintin')reporter.stories_filed += 1report...
分类:数据库   时间:2014-07-25 16:48:21    阅读次数:265
启动和关闭JBoss As 7.1.1脚本
启动和关闭JBoss As 7.1.1,脚本如下djboss.sh: #!/bin/sh #JBOSS_HOME JBOSS_HOME=/opt/jboss case "$1" in start) echo "Starting JBoss AS7..." sudo -u jboss sh ${JBOSS_HOME}/bin/standalone.sh & ;; stop) echo "Sto...
分类:其他好文   时间:2014-07-23 13:20:26    阅读次数:215
Linux命令之WC
$ wc story.txt39 237 1901 story.txt● Use -l for only line count● Use -w for only word count● Use -c for only byte count● Use -m for character count (n...
分类:系统相关   时间:2014-07-18 00:22:31    阅读次数:278
674条   上一页 1 ... 63 64 65 66 67 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!