题目

#A 小 K 的农场 (Unaccepted)
    #B 信息传递 (Unaccepted)
    #C 最短路计数 (Accepted)
    #D 通往奥格瑞玛的道路 (Accepted)

#E 公路修建 (Unaccepted)

#F 货车运输 (Unaccepted)

#G 图的m着色问题  (Unaccepted)


1. DFS & BFS

// 八皇后
// Au: GG #include <cstdio>
#include <cmath>
using namespace std;
int v[15], n, ans = 0;
bool f[15]; void dfs(int i) {
if (i > n) {
ans++;
if (ans <= 3) {
for (int j = 1; j <= n; j++) {
printf("%d ", v[j]);
}
printf("\n");
}
return;
}
for (int k = 1; k <= n; k++) {
if (f[k]) continue;
bool pd = true;
for (int j = 1; j < i; j++)
if (v[j] == k || abs(i - j) == abs(v[j] - k)) pd = false;
if (pd) {
v[i] = k;
f[k] = true;
dfs(i + 1);
f[k] = false;
v[i] = 0;
}
}
} int main() {
scanf("%d", &n);
dfs(1);
printf("%d", ans);
return 0;
}
// 马的遍历
// Au: GG #include <iostream>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstring>
#include <cstdio>
#include <cstdlib>
using namespace std; int n, m;
int dx[8] = { -2, -1, 1, 2, 2, 1, -1, -2};
int dy[8] = {1, 2, 2, 1, -1, -2, -2, -1};
int map[400 + 3][400 + 3];
struct bbc {
int x, y, n;
} s;
queue<bbc> q; int main() {
memset(map, -1, sizeof(map));
scanf("%d%d%d%d", &n, &m, &s.x, &s.y);
map[s.x][s.y] = 0;
q.push(s); while (!q.empty()) {
bbc a;
for (int i = 0; i < 8; i++) {
a = q.front();
int bx = a.x + dx[i];
int by = a.y + dy[i];
if (bx < 1 || bx > n || by < 1 || by > m || map[bx][by] != -1)
continue;
a.x = bx;
a.y = by;
a.n++;
q.push(a);
map[bx][by] = a.n;
}
q.pop();
} for (int k = 1; k <= n; k++) {
for (int r = 1; r <= m; r++)
printf("%-5d", map[k][r]);
printf("\n");
}
return 0;
}
/* Luogu P1126 机器人搬重物
* Au: GG
*/
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <queue>
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 53;
int n, m, g[N][N], endx, endy;
bool d[N][N][4]; struct status {
int x, y, t;
char d;
} sta;
queue<status> q; char ltd(char dir) {
if (dir == 'N') return 'W';
else if (dir == 'W') return 'S';
else if (dir == 'S') return 'E';
else return dir = 'N';
} char rtd(char dir) {
if (dir == 'N') return 'E';
else if (dir == 'E') return 'S';
else if (dir == 'S') return 'W';
else return 'N';
} int did(char dir) {
if (dir == 'N') return 0;
else if (dir == 'E') return 1;
else if (dir == 'S') return 2;
else return 3;
} int main() {
int h;
scanf("%d%d", &n, &m);
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++) {
scanf("%d", &h);
if (h) {
g[i][j] = -1;
g[i + 1][j] = -1;
g[i][j + 1] = -1;
g[i + 1][j + 1] = -1;
}
} scanf("%d%d%d%d %c", &sta.x, &sta.y, &endx, &endy, &sta.d);
sta.x++; sta.y++; endx++; endy++;
sta.t = 0; d[sta.x][sta.y][did(sta.d)] = true; q.push(sta);
while (!q.empty()) {
status a = q.front(), b;
q.pop(); if (a.x == endx && a.y == endy) {
printf("%d\n", a.t); return 0;
}
d[a.x][a.y][did(a.d)] = true;
// printf("Status a(%d, %d, %c) = %d\n", a.x, a.y, a.d, a.t); // Creep & Walk & Run
for (int step = 1; step <= 3; step++) {
if (a.d == 'N') {
b.x = a.x - step; b.y = a.y;
} else if (a.d == 'S') {
b.x = a.x + step; b.y = a.y;
} else if (a.d == 'W') {
b.x = a.x; b.y = a.y - step;
} else {
b.x = a.x; b.y = a.y + step;
}
b.d = a.d; b.t = a.t + 1;
if (g[b.x][b.y] == 0 && !d[b.x][b.y][did(b.d)]) {
if (b.x > 1 && b.x < n + 1 && b.y > 1 && b.y < m + 1)
q.push(b);
else break;
} else break;
} // Left
b.x = a.x; b.y = a.y; b.t = a.t + 1;
b.d = ltd(a.d);
if (!d[b.x][b.y][did(b.d)])
if (b.x > 1 && b.x < n + 1 && b.y > 1 && b.y < m + 1)
q.push(b); // Right
b.x = a.x; b.y = a.y; b.t = a.t + 1;
b.d = rtd(a.d);
if (!d[b.x][b.y][did(b.d)])
if (b.x > 1 && b.x < n + 1 && b.y > 1 && b.y < m + 1)
q.push(b);
} printf("-1\n");
return 0;
}
/*
9 10
0 0 0 0 0 0 1 0 0 0
0 0 0 0 0 0 0 0 1 0
0 0 0 1 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0 0
0 0 0 0 0 0 1 0 0 0
0 0 0 0 0 1 0 0 0 0
0 0 0 1 1 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 1 0
7 2 2 7 S
*/ /*
问题(估计是致命问题)给你一个图(点阵,不是块阵)
0 0 0 0 0 0 0
0 S 1 T 1 0 0
机器人在S处面向右方,根据你82-97行的前进代码,机器人可以到达T处,但是事实上并不能到达,所以题目数据的图(点阵)如下
0 0 0 0 0 0-1-1 0 0 0
0 0 0 0 0 0-1-1-1-1 0
0 0 V-1-1 V 0 T-1-1 0
0 0-1-1-1 0 0 0 0 0 0
0 0-1-1 0 0-1-1 0 0 0
0 0 V 0 0-1-1-1 0 0 0
0 0 0-1-1-1-1 0 0 0 0
0 0 S-1-1-1 0 0 0 0 0
-1-1 0 0 0 0 0 0-1-1 0
-1-1 0 0 0 0 0 0-1-1 0
7步的行径路径给你了 左转(面向右边)
左转(面向上方)
walk
run(这步其实不能走,但是按照你的代码是可以走的)
右转(面向右边)
run(这步其实也不能走,但是按照你的代码也是可以走的)
walk 以上七步S是起点V是途经点T是终点 连这个错误你都犯,你可以去面壁一天了。。。(什么时候可以穿墙了。。。)
还有,让zzh去面壁半天,连这么简单的错误都看不出来。
我先走了
——8:45 by dph
*/
/* P1118 [USACO06FEB]数字三角形Backward Digit Su…
* Au: GG
*/
#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 15;
int n, sum, tri[N][N], d[N];
bool v[N]; void triangle() { // triangle table
for (int i = 1; i <= n; i++) tri[i][1] = tri[i][i] = 1;
for (int i = 2; i <= n; i++)
for (int j = 2; j < i; j++)
tri[i][j] = tri[i - 1][j] + tri[i - 1][j - 1]; // for (int i = 1; i <= n; i++) {
// for (int j = 1; j <= i; j++)
// printf("%d ", tri[i][j]);
// printf("\n");
// }
} bool dfs(int f, int s) {
// printf("dfs(%d, %d, d = %d)\n", f, s, d[f - 1]);
if (f > n) {
if (s == sum) return true;
else return false;
}
for (int i = 1; i <= n; i++)
if (!v[i] && s + i * tri[n][f] <= sum) {
v[i] = true; d[f] = i;
if (dfs(f + 1, s + i * tri[n][f])) return true;
v[i] = false;
}
return false;
} int main() {
scanf("%d%d", &n, &sum);
triangle(); if (dfs(1, 0)) {
for (int i = 1; i <= n; i++) printf("%d ", d[i]);
} return 0;
}
/* Luogu P1141 01迷宫
* Au: GG
*/
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <queue>
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 1000 + 5;
int n, m, g[N][N]; int vis[N][N], vs, vcnt[100000 + 5];
int dx[] = {0, -1, 1, 0}, dy[] = {-1, 0, 0, 1}; struct point {
int x, y;
}; int read() {
char a = getchar();
while (a != '0' && a != '1') a = getchar();
return a - '0';
} bool check(point i) {
if (i.x < 1 || i.x > n) return false;
if (i.y < 1 || i.y > n) return false;
return true;
} int bfs(int u, int v) {
if (vis[u][v]) return vcnt[vis[u][v]]; int cnt = 0; vs++;
queue<point> q;
point a, b; a.x = u, a.y = v;
q.push(a); while (!q.empty()) {
a = q.front();
q.pop(); if (vis[a.x][a.y]) continue;
vis[a.x][a.y] = vs; cnt++; for (int i = 0; i < 4; i++) {
b.x = a.x + dx[i];
b.y = a.y + dy[i];
if (check(b) && (g[b.x][b.y] != g[a.x][a.y]) && !vis[b.x][b.y]) q.push(b);
}
} return vcnt[vs] = cnt;
} int main() {
scanf("%d%d", &n, &m);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
g[i][j] = read();
}
} int xx, yy;
while (m--) {
scanf("%d%d", &xx, &yy);
printf("%d\n", bfs(xx, yy));
} return 0;
}

2. 最小生成树

// 最小生成树
// Au: GG #include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <queue>
#include <algorithm>
using namespace std; int n, m, f[5000 + 3], sum;
struct edge {
int x, y, w;
bool operator < (const edge &a) const {
return w > a.w;
}
} temp;
priority_queue<edge> G; int find(int x) {
return (f[x] == x) ? x : f[x] = find(f[x]);
}
void join(int x, int y) {
f[find(y)] = find(x);
} int main() {
int x, y, z, flag = 0;
scanf("%d%d", &n, &m);
for (int i = 1; i <= m; i++) {
scanf("%d%d%d", &x, &y, &z);
temp.x = x; temp.y = y; temp.w = z; G.push(temp);
}
for (int i = 1; i <= n; i++) f[i] = i;
while (!G.empty()) {
temp = G.top(); G.pop();
if (find(temp.x) != find(temp.y)) join(temp.x, temp.y), sum += temp.w, flag++;
}
if (flag < n - 1) printf("orz\n");
else printf("%d\n", sum);
return 0;
}

3. 并查集

/* 并查集
* Au: GG
*/
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
const int maxn = 10000 + 3;
int n, m, z, x, y, f[maxn];
int find(int x) {
return (f[x] == x) ? x : f[x] = find(f[x]);
}
inline void join(int x, int y) {
f[find(y)] = find(x);
}
int main() {
scanf("%d%d", &n, &m);
while (n--) f[n] = n;
while (m--) {
scanf("%d%d%d", &z, &x, &y);
if (z == 1) {
join(x, y);
} else {
if (find(x) == find(y)) printf("Y\n");
else printf("N\n");
}
}
return 0;
}

图论 List的更多相关文章

  1. [leetcode] 题型整理之图论

    图论的常见题目有两类,一类是求两点间最短距离,另一类是拓扑排序,两种写起来都很烦. 求最短路径: 127. Word Ladder Given two words (beginWord and end ...

  2. 并查集(图论) LA 3644 X-Plosives

    题目传送门 题意:训练指南P191 分析:本题特殊,n个物品,n种元素则会爆炸,可以转移到图论里的n个点,连一条边表示u,v元素放在一起,如果不出现环,一定是n点,n-1条边,所以如果两个元素在同一个 ...

  3. NOIp 2014 #2 联合权值 Label:图论 !!!未AC

    题目描述 无向连通图G 有n 个点,n - 1 条边.点从1 到n 依次编号,编号为 i 的点的权值为W i ,每条边的长度均为1 .图上两点( u , v ) 的距离定义为u 点到v 点的最短距离. ...

  4. HDU 5521 [图论][最短路][建图灵感]

    /* 思前想后 还是决定坚持写博客吧... 题意: n个点,m个集合.每个集合里边的点是联通的且任意两点之间有一条dis[i]的边(每个集合一个dis[i]) 求同时从第1个点和第n个点出发的两个人相 ...

  5. SDUT 2141 【TEST】数据结构实验图论一:基于邻接矩阵的广度优先搜索遍历

    数据结构实验图论一:基于邻接矩阵的广度优先搜索遍历 Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic Discuss Problem ...

  6. [转] POJ图论入门

    最短路问题此类问题类型不多,变形较少 POJ 2449 Remmarguts' Date(中等)http://acm.pku.edu.cn/JudgeOnline/problem?id=2449题意: ...

  7. HDU 5934 Bomb 【图论缩点】(2016年中国大学生程序设计竞赛(杭州))

    Bomb Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submis ...

  8. Codeforces 553C Love Triangles(图论)

    Solution: 比较好的图论的题. 要做这一题,首先要分析love关系和hate关系中,love关系具有传递性.更关键的一点,hate关系是不能成奇环的. 看到没有奇环很自然想到二分图的特性. 那 ...

  9. 图论(floyd算法):NOI2007 社交网络

    [NOI2007] 社交网络 ★★   输入文件:network1.in   输出文件:network1.out   简单对比 时间限制:1 s   内存限制:128 MB [问题描述] 在社交网络( ...

  10. 【图论】【宽搜】【染色】NCPC 2014 A Ades

    题目链接: http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1787 题目大意: N个点M条无向边(N,M<=200000),一个节点只能有一个 ...

随机推荐

  1. 分页查询 pagecount recordcount pagesize

    pagecount=(recordcount+pagesize-1)/pagesize

  2. 如何统计序列中元素的频度---Python数据结构与算法相关问题与解决技巧

    实际案例: 1. 某随机序列 [12,5,6,4,6,5,5,7]中,找到出现次数最高的3个元素,它们出现的次数是多少? 2. 对于某英文文章的单词,进行词频统计,找到出现次数最高的10个单词,它们出 ...

  3. 【ABAP系列】SAP VA01屏幕增强(user-exit)

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[MM系列]SAP VA01屏幕增强(user- ...

  4. NornJ-javascript模版引擎

    NornJ-javascript模版引擎 NornJ是一个渲染效率高,语法可读性好,可扩展性超强,适用场景丰富的javascript模板引擎. 学习网址:https://www.npmjs.com/p ...

  5. BootStrap前端框架

    BootStrap前端框架 Bootstrap 教程:http://www.runoob.com/bootstrap/bootstrap-tutorial.html BpptStrap操作手册:htt ...

  6. vue 路由嵌套 及 router-view vue-router --》children

    vue 路由嵌套 vue-router -->children   在项目的很多子页面中,我们往往需要在同一个页面做一个组件的切换,同时保存这个页面的部分数据(比如树形菜单),进而显示不同的数据 ...

  7. python基础-3 集合 三元运算 深浅拷贝 函数 Python作用域

    上节课总结 1 运算符 in 字符串 判断  : “hello” in "asdasfhelloasdfsadf" 列表元素判断:"li" in ['li', ...

  8. TP框架中的M、D、C、I、A、S方法

    M方法 M实例化参数是数据库的表名 //使用M方法实例化$User = M('User');//和用法$User = new /Think/Model ('User');等效//执行其他的数据操作$U ...

  9. Thymeleaf运算符和表达式

    字符串拼接 方式一: <span th:text="'当前是第'+${page}+'页 ,共'+${page}+'页'"></span> 方式二: 使用&q ...

  10. 时间选择器moment格式化存在时差问题

    时间选择器moment格式化存在时差问题解决方法: return moment(date).utc().zone(+6).format('YYYY-MM-DD')解决IE9时间选择器不能回显数据解决方 ...