ZOJ 3488 Conic Section(数学啊 )...
分类:
其他好文 时间:
2015-04-18 20:41:42
阅读次数:
136
给出起始状态如:
问最少多少步操作可以变为:
每次操作只能把一个数字放到某个空格,不能交换两个数字的位置
hash判重模板mark一个
#include "stdio.h"
#include "string.h"
#include "queue"
using namespace std;
const int mod=1000007;
int aim[4][8]=
...
分类:
其他好文 时间:
2015-04-18 20:41:14
阅读次数:
149
#define _CRT_SECURE_NO_WARNINGS
#include
#define MAXSIZE 10
void Add(char a[], char b[], char c[]);
void Sub(char a[], char b[], char c[]);
int Get_len(char a[]);
bool Max_a(char a[], char b[]);...
分类:
编程语言 时间:
2015-04-18 20:39:25
阅读次数:
228
《代码里的世界》
用文字札记描绘自己 android学习之路
1. 简述 先贴一个我们刚做Android开发时候最容易遇到的一个错误异常 AndroidRuntimeException :“Only the original thread that created a view hierarchy can touch its views”
具体原因是当我们在对ui做出更改时,Andro...
分类:
移动开发 时间:
2015-04-18 20:39:53
阅读次数:
601
一般状况下, 我们使用FTP 到某台机器上进行文件上传、下载的操作,
在命令方式下,基本上是:
1.ftp 主机名
2.输入用户名
3. 输入密码
4. 切换模式(asc 或者是 bin)
5. 上传或下载(put 或者是 get)
6. 退出(bye or quit)...
Travel
Time Limit: 10000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1847 Accepted Submission(s): 623
Problem Description
One day, Tom trav...
分类:
其他好文 时间:
2015-04-18 20:39:59
阅读次数:
180
1)动作思维,直接思维 最基础的思维方式,根据事物的反馈直接进行思考,比如点灯坏了,检查灯泡,检查线路。2)形象思维 通过对事物的形象进行思考。形象,感性是其特点。3)抽象思维 利用抽象概念和知识来解决问题。4)影响记忆的因素A) 注意力集中;B、目标明确 C、多动脑,多思考(勤) D 丰富的知识经验(知识越多,记忆越好) E 及时复习 F 运用和实践 G 锻炼身体,科...
分类:
其他好文 时间:
2015-04-18 20:40:11
阅读次数:
157
Roman to Integer
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
解题思路:
罗马数字转化成数字。一种方法是映射法,每一位(阿拉伯数字)的字符到阿拉伯数字的映射。如下所示:
class Solu...
分类:
其他好文 时间:
2015-04-18 20:40:01
阅读次数:
167
WuKong
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1429 Accepted Submission(s): 517
Problem Description
Liyuan wanted to rewrite...
分类:
其他好文 时间:
2015-04-18 20:40:11
阅读次数:
202
代码简化如下:
#include
#include
using namespace std;
int main()
{
string str="Hello World!";
int len = str.length();//获取长度
for(int i=0;str[i]!=' '&&(i/遍历字符串中的每一个变量知道找到空格 就是在这一行调试时总是出现错...
分类:
编程语言 时间:
2015-04-18 20:40:01
阅读次数:
112
题意:给你一个n*m矩阵,每个点有四个方向可以走。室友说自己用p步走到了终点,问是一定还是可能,还是不可能。
做法:把每个点化做一数,i行j列为(i*m+j)。 然后把每个点的转移写在构造矩阵中,比如第二个案例,就只用建一条边,0->1,所以mp.a[0][1]=1。
如果到了终点,就不再走了,所以构造矩阵第一维不能是终点数字。然后p次快速幂,结果的第一行,为p步能到达的点。如果快速幂后,[0][n*m-1]不为1,那就是false。
如果为1,判断第一行其他点是否为1,如果有为1的,那么他就是可能撒谎,...
分类:
其他好文 时间:
2015-04-18 20:39:39
阅读次数:
143
An exam for n students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with
adjacent numbers (i and i?+?1) always stud...
分类:
其他好文 时间:
2015-04-18 20:39:11
阅读次数:
146
原文链接这里
话题的由来
某天午饭前,项目组一同事挑起了这个话题,由于是马上要到饭点了,所以没有细聊,但公认的结论是,从零开始准备一个项目,花费的工作量不小。
由于最近我参与了一个全新的web项目,有切身的体验,所以记录下来。
主要的工作量包括如下几点:
代码开发环境准备
开源软件选择
版本管理软件
基础代码开发
问题处理
制度建设
代码开发环境准...
分类:
其他好文 时间:
2015-04-18 20:37:38
阅读次数:
268
MainActivity.java:
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListene...
分类:
移动开发 时间:
2015-04-18 20:36:17
阅读次数:
125
The on-board computer on Polycarp's car measured that the car speed at the beginning of some section of the path equals v1 meters
per second, and in the end it is v2 meters
per second. We know tha...
分类:
其他好文 时间:
2015-04-18 20:38:35
阅读次数:
164
Webbench 是一个古老而著名的网站压力测试工具,简单而实用。如果你不清楚你的网站能承受多大的压力,或者你想分析对比两个网站的性能,webbench 再好用不过了。...
分类:
Web程序 时间:
2015-04-18 20:37:25
阅读次数:
146
Polycarp has n dice d1,?d2,?...,?dn.
The i-th dice shows numbers from 1 to di.
Polycarp rolled all the dice and the sum of numbers they showed is A. Agrippina didn't see which dice showed what num...
分类:
其他好文 时间:
2015-04-18 20:37:46
阅读次数:
171