摘要: Simon has a rectangular table consisting of n rows and m columns. Simon numbered the rows of the table from top to bottom starting fro... 阅读全文
posted @ 2017-08-29 21:05 Assassin_poi君 阅读(249) 评论(0) 推荐(0) 编辑
摘要: The police office in Tadu City decides to say ends to the chaos, as launch actions to root upthe TWO gangs in the city, Gang Dragon an... 阅读全文
posted @ 2017-08-28 20:45 Assassin_poi君 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 今天做到了相关的题,感觉知识欠缺就想着写个总结加深一下记忆。首先是今天看到的题:一块花布条,里面有些图案,另有一块直接可用的小饰条,里面也有一些图案。对于给定的花布条和小饰条,计算一下能从花布条中尽可能剪出几块小饰条来呢? Input:输入中含有一些数据,分别是成对出... 阅读全文
posted @ 2017-08-27 21:03 Assassin_poi君 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 前几天刚学会单行多个输入即 a,b = map(int,input().split())今天正好看到了关于map的讲解才知道这里的int其实是int()。int()是函数调用,int是函数。map是把读到的字符串全部用int()处理了一遍。同样类似的还有filte... 阅读全文
posted @ 2017-08-24 15:49 Assassin_poi君 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 菜鸟瞎玩玩。:-D代码:#include #include #include #include /* run this program using the console pauser or add your own getch, system("pause") or... 阅读全文
posted @ 2017-08-24 09:49 Assassin_poi君 阅读(142) 评论(0) 推荐(0) 编辑
摘要: python如何实现一行输入多个值呢?例如 读入两个数10 23到a b 中。很简单 a,b = input().split() 即可。 当然,a,b中保存的是字符串。如果要求a,b中保存的是整数的话可以这样写a,b = map(int,input().sp... 阅读全文
posted @ 2017-08-22 20:03 Assassin_poi君 阅读(2877) 评论(0) 推荐(0) 编辑
摘要: 穿过幽谷意味着离大魔王lemon已经无限接近了!可谁能想到,yifenfei在斩杀了一些虾兵蟹将后,却再次面临命运大迷宫的考验,这是魔王lemon设下的又一个机关。要知道,不论何人,若在迷宫中被困1小时以上,则必死无疑!可怜的yifenfei为了去救MM,义无返顾地跳... 阅读全文
posted @ 2017-08-17 11:41 Assassin_poi君 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 电子科大本部食堂的饭卡有一种很诡异的设计,即在购买之前判断余额。如果购买一个商品之前,卡上的剩余金额大于或等于5元,就一定可以购买成功(即使购买后卡上余额为负),否则无法购买(即使金额足够)。所以大家都希望尽量使卡上的余额最少。某天,食堂中有n种菜出售,每种菜可购买一... 阅读全文
posted @ 2017-08-16 06:41 Assassin_poi君 阅读(210) 评论(0) 推荐(0) 编辑
摘要: Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”.This man like to collect varies of bones , such a... 阅读全文
posted @ 2017-08-16 06:36 Assassin_poi君 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 在讲述DP算法的时候,一个经典的例子就是数塔问题,它是这样描述的:有如下所示的数塔,要求从顶层走到底层,若每一步只能走到相邻的结点,则经过的结点的数字之和最大是多少? 已经告诉你了,这是个DP的题目,你能AC吗? Input:输入数据首先包括一个整数C,表示测试实例的... 阅读全文
posted @ 2017-08-16 06:12 Assassin_poi君 阅读(115) 评论(0) 推荐(0) 编辑