2013 ACM/ICPC 亚洲区 杭州站
题目链接 2013杭州区域赛
Problem A
Problem B
这题我用的是SPFA+ mask dp
首先跑5次SPFA:
1次是求出每个起点和其他所有点的最短距离
4次是求出每个输入的点和其他所有点的最短距离
然后就是dp
设dp[mask][i]为,mask状态下,以i为终点的最优方案
然后做一遍状压DP即可。
#include <bits/stdc++.h> using namespace std; #define rep(i, a, b) for (int i(a); i <= (b); ++i)
#define dec(i, a, b) for (int i(a); i >= (b); --i) const int N = 103;
const int M = 1e4 + 10;
const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1}; bool inqueue[M], fl;
int c[N][N], f[6][6], a[M], d[M], dp[101][6];
char s[N][N];
int cnt, n, m, k;
vector <int> v[M]; inline void addedge(int x, int y){
v[x].push_back(y);
v[y].push_back(x);
} void SPFA(int s){
memset(inqueue, false, sizeof inqueue);
rep(i, 1, cnt) d[i] = 1 << 29;
d[s] = 0;
queue <int> q;
q.push(s); while (!q.empty()){
int x = q.front();
q.pop();
inqueue[x] = false;
for (auto u : v[x]){
if (d[u] > d[x] + 1){
d[u] = d[x] + 1;
if (!inqueue[u]){
inqueue[u] = true;
q.push(u);
}
}
}
}
} int main(){ while (~scanf("%d%d", &n, &m), n + m){
rep(i, 1, n) scanf("%s", s[i] + 1);
cnt = 0;
rep(i, 1, n) rep(j, 1, m) c[i][j] = ++cnt; scanf("%d", &k);
rep(i, 1, n) rep(j, 1, m) if (s[i][j] == '@'){
a[k] = c[i][j];
s[i][j] = '.';
break;
} rep(i, 0, k - 1){
int x, y;
scanf("%d%d", &x, &y);
a[i] = c[x][y];
} rep(i, 0, n * m + 1) v[i].clear(); rep(i, 1, n){
rep(j, 1, m) if (s[i][j] == '.'){
rep(k, 0, 3){
int x = i + dx[k], y = j + dy[k];
if (s[x][y] == '.'){
addedge(c[i][j], c[x][y]);
}
}
}
} SPFA(a[k]); rep(i, 0, k) rep(j, 0, k) f[i][j] = 1 << 29;
rep(i, 0, k){
SPFA(a[i]);
rep(j, 0, k) if (i == j) f[i][j] = 0;
else f[i][j] = d[a[j]];
} rep(i, 0, 53) rep(j, 0, 5) dp[i][j] = 1 << 29;
rep(i, 0, k - 1) dp[1 << i][i] = f[i][k]; rep(i, 1, ((1 << k) - 1)){
if (__builtin_popcount(i) != 1){
rep(j, 0, k - 1) if ((i >> j) & 1){
rep(l, 0, k - 1) if (((i >> l) & 1) && (j != l)){
dp[i][j] = min(dp[i][j], dp[i ^ (1 << j)][l] + f[j][l]);
}
}
}
} int ans = 1 << 30;
rep(i, 0, k - 1) ans = min(ans, dp[(1 << k) - 1][i]);
printf("%d\n", ans < 1e6 ? ans : -1);
} return 0;
}
Problem C
跟着题意模拟一遍
关键是那个旋转要一次性写对
#include <bits/stdc++.h> using namespace std; #define rep(i, a, b) for (int i(a); i <= (b); ++i)
#define dec(i, a, b) for (int i(a); i >= (b); --i) const int N = 41; int a[N][N], b[N][N];
int n;
int ans; void solve(){
int c[N][N]; memset(c, 0, sizeof c);
rep(i, 1, n) rep(j, 1, n) c[i][j] = a[j][n - i + 1];
rep(i, 1, n) rep(j, 1, n) a[i][j] = c[i][j];
} int main(){ while (~scanf("%d", &n), n){
rep(i, 1, n) rep(j, 1, n) scanf("%d", &a[i][j]);
rep(i, 1, n) rep(j, 1, n) scanf("%d", &b[i][j]); ans = 0;
rep(p, 1, 4){
solve();
int now = 0;
rep(i, 1, n) rep(j, 1, n) if (a[i][j] == b[i][j]) ++now;
ans = max(ans, now);
} printf("%d\n", ans);
} return 0;
}
Problem D
Problem E
Problem F
Problem G
Problem H
Problem I
Problem J
Problem K
2013 ACM/ICPC 亚洲区 杭州站的更多相关文章
- 2016 ACM/ICPC亚洲区青岛站现场赛(部分题解)
摘要 本文主要列举并求解了2016 ACM/ICPC亚洲区青岛站现场赛的部分真题,着重介绍了各个题目的解题思路,结合详细的AC代码,意在熟悉青岛赛区的出题策略,以备战2018青岛站现场赛. HDU 5 ...
- 2016 ACM/ICPC亚洲区大连站-重现赛 解题报告
任意门:http://acm.hdu.edu.cn/showproblem.php?pid=5979 按AC顺序: I - Convex Time limit 1000 ms Memory li ...
- 2016 ACM/ICPC亚洲区大连站 F - Detachment 【维护前缀积、前缀和、二分搜索优化】
F - Detachment In a highly developed alien society, the habitats are almost infinite dimensional spa ...
- 2012 ACM/ICPC 亚洲区 金华站
题目链接 2012金华区域赛 Problem A 按a/b从小到大的顺序排队进行体检即可 #include<iostream> #include<cstdio> #inclu ...
- 2016 ACM/ICPC亚洲区青岛站
A B C D E F G H I J K L M O O O O $\varnothing$ $\varnothing$ $\varnothing$ $\varnothing$ ...
- 2016 ACM/ICPC亚洲区沈阳站
A B C D E F G H I J K L M O O O $\varnothing$ $\varnothing$ $\varnothing$ $\varnothing$ $\varnothi ...
- (HDU 5558) 2015ACM/ICPC亚洲区合肥站---Alice's Classified Message(后缀数组)
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=5558 Problem Description Alice wants to send a classi ...
- 2013ACM/ICPC亚洲区南京站现场赛---Poor Warehouse Keeper(贪心)
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=4803 Problem Description Jenny is a warehouse keeper. ...
- HDU 5950 Recursive sequence 【递推+矩阵快速幂】 (2016ACM/ICPC亚洲区沈阳站)
Recursive sequence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Other ...
随机推荐
- PHP将unicode转utf8最简法
最近开发时遇到Unicode编码问题,找了半天才知道PHP并没有Unicode转码函数,终于发现用一行PHP代码解决的方案: $str = '{"success":true,&qu ...
- OpenCV中的图像形态学转换
两个基本的形态学操作是腐蚀和膨胀.他们的变化构成了开运算,闭运算,梯度等.下面以这张图为例 1.腐蚀 这个操作会把前景物体的边界腐蚀掉. import cv2 import numpy as np i ...
- 线段树:CDOJ1591-An easy problem A (RMQ算法和最简单的线段树模板)
An easy problem A Time Limit: 1000/1000MS (Java/Others) Memory Limit: 65535/65535KB (Java/Others) Pr ...
- Mysql源码编译安装&主从复制
一)camke源码编译安装mysql 1)创建软件安装目录software [root@master software]# ls cmake-2.8.8.tar.gz mysql-5.5.32.tar ...
- 笔记-python-*号解包
笔记-python-*号解包 在码代码时发现*号可以这样使用: str = ["abcd", "abce", "abcf"]st = &qu ...
- debiand上安装thunderbird
deb包下载地址 http://sourceforge.net/projects/ubuntuzilla/files/mozilla/apt/pool/main/t/thunderbird-mozil ...
- CSS效果常见问题
详细解答参见上篇博客 问题1.如何用 div 画一个 xxx box-shadow 无限投影 (堆叠成复杂图案) ::before ::after 问题2.如何产生不占空间的边框 1.box-shad ...
- hexo博客出现“Cannot GET/xxxx”的错误
最近在github上搭了一个hexo博客系统,非常轻量级的,只需要几句nodejs命令就搭建完成了.我了解了一下,hexo博客是基于nodejs写的,采用ejs模板引擎编写页面. 因为默认的主题风格不 ...
- Python面试题(练习二)
1.用Python实现一个二分查找的函数. data = [1, 3, 6, 7, 9, 12, 14, 16, 17, 18, 20, 21, 22, 23, 30, 32, 33, 35] def ...
- API生命周期第二阶段——设计:采用swagger进行API描述、设计
本篇博客主要是以swagger为依托,介绍API生命周期的第二个阶段--设计!在详细介绍之前,我必须声明一点:如果是想了解swagger和项目框架的集成的,这里没有.我要介绍的swagger进行的AP ...