Safecracker
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 9965 Accepted Submission(s): 5097
Problem Description
=== Op tech br...
分类:
编程语言 时间:
2015-05-14 08:44:07
阅读次数:
169
其实我认为搜索==暴力,只不过搜索是用比较特殊的方式来实现,所以听起来高大上一点,本质上和暴力是一个意思
不知道写这样闪瞎狗眼的代码会不会被人打~
#include
#include
#include
using namespace std;
int rem[30];
int main()
{
int target;
string ans;
while(cin>>target>>ans&...
分类:
其他好文 时间:
2015-04-28 22:58:43
阅读次数:
160
http://acm.hdu.edu.cn/showproblem.php?pid=1015题意:给出一个目标值target和一个由大写字母组成的字符串 A-Z分别对应权值1-26要求从给出的字符串中选出5个字符,它们的权值v,w,x,y,z应符合下列式子v - w^2 + x^3 - y^4 + ...
分类:
其他好文 时间:
2015-04-28 20:36:36
阅读次数:
150
题目链接:HDU - 1015=== Op tech briefing, 2002/11/02 06:42 CST ==="The item is locked in a Klein safe behind a painting in the second-floor library. Klein ...
分类:
其他好文 时间:
2015-04-18 01:01:46
阅读次数:
182
Safecracker
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 9548 Accepted Submission(s): 4860
Problem Description
=== Op tech briefi...
分类:
其他好文 时间:
2015-04-01 22:09:30
阅读次数:
151
问题陈述: 杭州电子科技大学HANGZHOU DIANZI UNIVERSITY Online Judge Problem - 1015问题解析: 深度优先搜索(Depth_First Search)代码详解: 1 #include 2 #include 3 #include 4 #i...
分类:
其他好文 时间:
2015-03-05 12:15:26
阅读次数:
138
Op tech briefing, 2002/11/02 06:42 CST ===
"The item is locked in a Klein safe behind a painting in the second-floor library. Klein safes are extremely rare; most of them, along with Klein and his factory, were destroyed in World War II. Fortunately old B...
分类:
其他好文 时间:
2015-02-12 16:12:49
阅读次数:
174
题目:字母'A'~'Z'对应数值1~26,现在给你一个字母表和target,从里面选取5个字母v、w、x、y、z,
使得公式v - w^2 + x^3 - y^4 + z^5 = target成立,找到字典序最大的vwxyz。
分析:简单题、搜索。因为一定选取5个元素,所以直接暴力即可(模拟递归)。
说明:计算时标记取过的字母,避免重复计算。
#include
#...
分类:
其他好文 时间:
2015-01-31 21:55:40
阅读次数:
165
终于做对DFS了。这题就是简单的DFS吧,不过对我而言,我是费了不少力气。
#include
#include
#include
#include
#include
using namespace std;
char s[15];
bool isok,visited[15];
int len;
void dfs(int target,char *ans,int cnt,int id)//cnt用...
分类:
其他好文 时间:
2015-01-13 21:32:54
阅读次数:
174
Safecracker
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 8947 Accepted Submission(s): 4529
Problem Description
=== Op tech br...
分类:
其他好文 时间:
2014-12-07 20:24:16
阅读次数:
127