#include <stdio.h>#include <string.h>#include <math.h> int n,m,t;char map[10][10];int flag;int di,dj,wall;int to[4][2] = {{0,-1},{0,1},{-1,0},{1,0}}; ...
分类:
其他好文 时间:
2017-01-11 07:56:21
阅读次数:
200
Description Once upon a time there was a greedy King who ordered his chief Architect to build a wall around the King's castle. The King was so greedy, ...
分类:
其他好文 时间:
2016-12-31 21:55:04
阅读次数:
298
作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明。谢谢! Python具有良好的时间和日期管理功能。实际上,计算机只会维护一个挂钟时间(wall clock time),这个时间是从某个固定时间起点到现在的时间间隔。时间起点的选择与计算机相 ...
分类:
编程语言 时间:
2016-12-24 20:09:52
阅读次数:
244
详解:http://blog.csdn.net/wall_f/article/details/8207595 算法时间复杂度:O(E * V * V) ...
分类:
编程语言 时间:
2016-12-21 21:26:51
阅读次数:
242
Walk through the matrix. At the start of each non-wall-streak (row-wise or column-wise), count the number of hits in that streak and remember it. For ...
分类:
其他好文 时间:
2016-12-18 09:56:57
阅读次数:
245
设置对象的父节点: wall.transform:SetParent(GameObject.Find("Walls").transform) 设置颜色: wall:GetComponent("Image").color = UnityEngine.Color(111/255, 89/255, 89/ ...
分类:
编程语言 时间:
2016-12-16 19:40:18
阅读次数:
221
【政治】墨西哥墙上行走(川普系列3)@XP|20161208 Wall-walking: Mexico Enrique Peña Nieto was castigated at home for his presidential summit with Donald Trump in August. ...
分类:
其他好文 时间:
2016-12-11 23:12:29
阅读次数:
321
题目连接:hdu 3669 Cross the Wall 题意: 现在有一面无限大的墙,现在有n个人,每个人都能看成一个矩形,宽是w,高是h,现在这n个人要通过这面墙,现在只能让你挖k个洞,每个洞不能重叠,每个洞需要消耗你挖的w*h,现在问你最小消耗多少。 题解: 设dp[i][j]为前j个人挖i个 ...
分类:
其他好文 时间:
2016-12-10 00:40:12
阅读次数:
155
开始接触linux,将这篇博文作为使用GCC过程中学习笔记,碰到新的命令就往上添加。 1. 安装 gcc安装 sudo apt-get install build-essential 对于ubuntu或debian用户 2. 编译 编译hello.c 文件 gcc hello.c -Wall -o ...
分类:
其他好文 时间:
2016-12-02 19:02:48
阅读次数:
125
cc1plus:allwarningsbeingtreatedaserrors解决办法:只需要找到相应的Makefile,去掉编译选项中的-Werror即可。--Werror视警告为错误;出现任何警告即放弃编译.-Wall会打开一些很有用的警告选项,建议编译时加此选项。-Wextra打印一些额外的警告信息。-w禁止显示所有警告信息。=..
分类:
其他好文 时间:
2016-11-29 00:16:25
阅读次数:
318