WA题集
#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> #include <cmath> using namespace std; + ; struct points { double x,y; }; points point[MAX]; double d[MAX][MAX]; double dist(int a, int b) { return sqrt( (point[a].x - point[b].x) * (point[a].x - point[b].x) + (point[a].y - point[b].y) * (point[a].y - point[b].y)); } int main() { int n; while(scanf("%d", &n) != EOF) { ; i <= n; i++) scanf("%lf%lf", &point[i].x, &point[i].y); ; i < n - ; i++) d[n - ][i] = dist(n - , n) + dist(i, n); ; i > ; i--) { ; j < i; j++) { ][j] + dist(i, i + ) - d[i + ][i] - dist(j, i + ) > 0.00001) d[i][j] = d[i + ][j] + dist(i, i + ); else d[i][j] = d[i + ][i] + dist(j, i + ); } } printf(][] + dist(,)); } ; }
UVA1347紫书dp
zoj1163http://blog.csdn.net/cherry_sun/article/details/6245208
#include <iostream> #include <cstring> #include <algorithm> #include <map> #include <cstdio> using namespace std; map<string,int> color; ][],cnt[],sum[]; + ]; int main() { int n,m; while(scanf("%d%d", &n, &m) != EOF) { && m == ) break; ]; ; i <= n; i++) { scanf("%s", temp); color[temp] = i; } int x; memset(cnt, , sizeof(cnt)); memset(sum, , sizeof(sum)); memset(ans, , sizeof(ans)); ; i <= m; i++) { scanf("%d%s",&x, temp); cloth[ color[temp] ][ cnt[ color[temp] ]++ ] = x; } ; i <= n; i++) { ; j < cnt[i]; j++) { sum[i] += cloth[i][j]; } } ; ; i <= n; i++) { ; ; j < cnt[i]; j++) { for(int k = v; k >= cloth[i][j]; k--) { ans[k] = max(ans[k], ans[k - cloth[i][j]] + cloth[i][j]); } } all += sum[i] - ans[v]; } printf("%d\n",all); } ; }
UVA类似于8皇后问题
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; ; int g[MAX][MAX],vis[MAX][MAX*MAX]; int n,m,ans,t; void dfs(int x,int cnt) { ; for(int i = x; i < n; i++) { ; j < m; j++) { if(g[i][j]) { ][j] == && vis[][i + j] == && vis[][i - j + t] == ) { flag = ; break; } } } ) { break; } } ) { ans =min(ans,cnt); return ; } ; i < m; i++) { if(g[x][i]) { ][i] == && vis[][x + i] == && vis[][x - i + t] == ) { vis[][i] = vis[][x + i] = vis[][x - i + t] = ; dfs(x + , cnt + ); vis[][i] = vis[][x + i] = vis[][x - i + t] = ; } } } } int main() { ; while(scanf("%d", &n) != EOF) { ) break; scanf("%d", &m); t = max(n,m); getchar(); memset(vis,,sizeof(vis)); memset(g,,sizeof(g)); char ch; ; i < n; i++) { ; j < m; j++) { scanf("%c",&ch); if(ch == 'X') g[i][j] = ; } getchar(); } ans = ; dfs(,); printf("Case %d: %d\n",num++,ans); } ; }
POJ 3026 Borg Maze
http://poj.org/problem?id=3026
#include <iostream> #include <cstdio> #include <algorithm> #include <queue> #include <cstring> using namespace std; typedef pair<int,int> P; ; ][]; ][],vis[][],dis[][],edge[][]; int t,row,col,num; ][]={{,},{,},{,-},{-,} }; void bfs(int x,int y) { queue<P> q; P point; point.first = x; point.second = y; memset(vis,,sizeof(vis)); memset(dis,,sizeof(dis)); vis[x][y] = ; q.push(point); while(q.size()) { P temp; temp = q.front(); q.pop(); if( node[temp.first][temp.second] ) { // cout<<node[x][y] <<" "<<node[point.first][point.second]<<endl; edge[ node[x][y] ][ node[temp.first][temp.second] ] = dis[temp.first][temp.second]; } ; i < ; i++) { ]; ]; && fy >= && fx < row && fy < col) { && g[fx][fy] != '#') { dis[fx][fy] = dis[temp.first][temp.second] + ; vis[fx][fy] = ; point.first = fx; point.second = fy; q.push(point); } } } } } void prime() { ]; ]; ; i < num; i++) { v[i] = false; } ; i < num; i++) s[i] = edge[][i]; v[] = true; ; ; i < num; i++) { int pos, minn = INF; ; j < num; j++) { if(v[j] == false && s[j] < minn) { minn = s[j]; pos = j; } } sum += minn; v[pos] = true; ; j < num; j++) { if(s[j] > edge[pos][j]) s[j] = edge[pos][j]; } } printf("%d\n",sum); } int main() { scanf("%d", &t); while(t--) { scanf("%d%d", &col,&row); getchar(); num = ; memset(node,,sizeof(node)); memset(edge,,sizeof(edge)); ; i < row; i ++) { ; j < col; j++) { scanf("%c", &g[i][j]); if(g[i][j] == 'A' || g[i][j] == 'S') node[i][j] = num++; } getchar(); } ; i < row; i++) { ; j < col; j++) if(node[i][j]) bfs(i,j); } prime(); } ; }
POJ2253
#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> #include <cmath> using namespace std; + ; << ; struct Node { int x,y; }; Node point[MAX]; int N; double path[MAX][MAX],dist[MAX],ans; int vis[MAX]; void prime() { memset(vis,,sizeof(vis)); ; i <= N; i++) dist[i] = path[][i]; vis[] = ; dist[] = ; ; ; i < N; i++) { double minn = INF; ; j <= N; j++) { && dist[j] < minn) { minn = dist[j]; pos = j; } } vis[pos] = ; dist[pos] = minn; ) return; if(ans < minn) ans = minn; ; j <= N; j++) { ) dist[j] = dist[pos] + path[pos][j]; } } } int main() { ; while(scanf("%d", &N) != EOF && N) { ; i <= N; i++) { scanf("%d%d",&point[i].x,&point[i].y); } ; i <= N; i++) { ; j <= N; j++) { double x = point[i].x - point[j].x; double y = point[i].y - point[j].y; path[i][j] = sqrt(x * x + y * y); } } ans = ; prime(); printf("Scenario #%d\n",++t); if(ans) printf("Frog Distance = %0.3lf\n",ans); else printf(][]); printf("\n"); } ; }
WA题集的更多相关文章
- 数位dp题集
题集见大佬博客 不要62 入门题,检验刚才自己有没有看懂 注意一些细节. 的确挺套路的 #include<bits/stdc++.h> #define REP(i, a, b) for(r ...
- ACM题集以及各种总结大全!
ACM题集以及各种总结大全! 虽然退役了,但是整理一下,供小弟小妹们以后切题方便一些,但由于近来考试太多,顾退役总结延迟一段时间再写!先写一下各种分类和题集,欢迎各位大牛路过指正. 一.ACM入门 关 ...
- 全国各大 oj 分类题集...
各种题集从易到难刷到手软 你准备好了吗? 准备剁手吧
- ACM题集以及各种总结大全(转)
ACM题集以及各种总结大全! 虽然退役了,但是整理一下,供小弟小妹们以后切题方便一些,但由于近来考试太多,顾退役总结延迟一段时间再写!先写一下各种分类和题集,欢迎各位大牛路过指正. 一.ACM入门 关 ...
- 组合数取模&&Lucas定理题集
题集链接: https://cn.vjudge.net/contest/231988 解题之前请先了解组合数取模和Lucas定理 A : FZU-2020 输出组合数C(n, m) mod p (1 ...
- Bug是一种财富-------研发同学的错题集、测试同学的遗漏用例集
此文已由作者王晓明授权网易云社区发布. 欢迎访问网易云社区,了解更多网易技术产品运营经验. 各位看官,可能看到标题的你一定认为这是一篇涉嫌"炒作"的文章,亦或是为了吸引眼球而起的标 ...
- 二级C语言题集
时间:2015-5-13 18:01 在131题之后是按考点分类的题集,有需要的朋友可以看一下 ---------------------------------------------------- ...
- 中南大学2019年ACM寒假集训前期训练题集(基础题)
先写一部分,持续到更新完. A: 寒衣调 Description 男从戎,女守家.一夜,狼烟四起,男战死沙场.从此一道黄泉,两地离别.最后,女终于在等待中老去逝去.逝去的最后是换尽一生等到的相逢和团圆 ...
- 【转】并查集&MST题集
转自:http://blog.csdn.net/shahdza/article/details/7779230 [HDU]1213 How Many Tables 基础并查集★1272 小希的迷宫 基 ...
随机推荐
- JavaScript闭包(Closure)
JavaScript闭包(Closure) 本文收集了多本书里对JavaScript闭包(Closure)的解释,或许会对理解闭包有一定帮助. <你不知道的JavsScript> Java ...
- 一步步实现ABAP后台导入EXCEL到数据库【3】
在一步步实现ABAP后台导入EXCEL到数据库[2]里,我们已经实现计划后台作业将数据导入数据库的功能.但是,这只是针对一个简单的自定义结构的导入程序.在实践应用中,面对不同的表.不同的导入文件,我们 ...
- 为什么我会认为SAP是世界上最好用最牛逼的ERP系统,没有之一?
为什么我认为SAP是世界上最好用最牛逼的ERP系统,没有之一?玩过QAD.Tiptop.用友等产品,深深觉得SAP是贵的有道理! 一套好的ERP系统,不仅能够最大程度承接适配企业的管理和业务流程,在技 ...
- Linux Distribution / ROM
Linux发行版 http://unix.stackexchange.com/questions/87011/how-to-easily-build-your-own-linux-distro 这个文 ...
- HTML5-电影影评网
学习完了HTML5的新标签,然后结合之前的案例做了第一个小案例.自我感觉良好.下面我来展示一下图片 这是我浏览其他网站的时候以为发现的新功能可以运行代码,这是运行之后截得图片.自我感觉照片还是蛮高大上 ...
- Titanium.UI.createAlertDialog
学习TI 记录一下 1.确认对话框 Js代码 var a = Titanium.UI.createAlertDialog({ title:'添加人员信息', message:"人员添加成功& ...
- Android中使用Notification实现普通通知栏(Notification示例一)
Notification是在你的应用常规界面之外展示的消息.当app让系统发送一个消息的时候,消息首先以图表的形式显示在通知栏.要查看消息的详情需要进入通知抽屉(notificationdrawer) ...
- 基于JQuery实现的文本框自动填充功能
1. 实现的方法 /* * js实现的文本框的自动完成功能 */ function doAutoComplete(textid,dataid,url){ $("#" + texti ...
- 带调试器(Debugger)的ILSpy(2.2.0.1738)
2015-03-13 09:40更新: 感谢@dark89757园友提出的调试时不能查看变量的问题. 源码已修改,并提交到了github. 请查看最新发布,二进制文件和源码都在这里: 调试时可查看变量 ...
- SQL中EXISTS的使用
1.简介 不相关子查询:子查询的查询条件不依赖于父查询的称为不相关子查询. 相关子查询:子查询的查询条件依赖于外层父查询的某个属性值的称为相关子查询,带EXISTS 的子查询就是相关子查询 EXIST ...