2015ACM/ICPC亚洲区沈阳站
题意:给出n个字符串,求满足条件的最大下标值或层数
条件:该字符串之前存在不是 它的子串 的字符串
求解si是不是sj的子串,可以用kmp算法之类的。
strstr是黑科技,比手写的kmp快。if(strstr(s[i], s[j]) == NULL),则Si不是Sj的子串。
还有一个重要的剪枝:对于一个串,如果当前找到的串是它的母串,则下一次这个串不用遍历。
#include <set>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
#define mem(x,y) memset(x, y, sizeof(x))
#define lson l,m,rt << 1
#define rson m+1,r,rt << 1 | 1
? a : gcd(b, a % b);}
int lcm(int a,int b){return a / gcd(a, b) * b;}
int T, n;
][];
];
int main()
{
scanf("%d", &T);
; Case <= T; Case++)
{
mem(vis, );
scanf("%d", &n);
getchar();
; i <= n; i++)
{
scanf("%s", s[i]);
}
;
; i <= n; i++)
{
;
; j >= ; j--)
{
if(vis[j]) continue;
if(strstr(s[i], s[j]) == NULL)//sj 不是 si的子串
{
ok = ;
break;
}
else
{
vis[j] = ;//重要剪枝
}
}
if(ok) ans = i;
}
printf("Case #%d: %d\n", Case, ans);
}
;
}
题意:有n个庙经过长时间风吹雨打需要修补,只有两座(被标记为a,b)完好无损不需要修补,有两个和尚轮流去修补这n-2个庙,每个和尚每次只能修补一个庙标记为i,并要求i满足i=j+k或者i=j-k,每个庙只能被修建一次;其中j和k代表已经修建好的庙,Yuwgna先开始,问最后谁不能修建谁输;
更相减损术!(gcd里头:辗转相除法,更相减损术,自行百度)
更相减损术:
#include <set>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
#define mem(x,y) memset(x, y, sizeof(x))
#define lson l,m,rt << 1
#define rson m+1,r,rt << 1 | 1
? a : gcd(b, a % b);}
int T, n, x, y;
int main()
{
scanf("%d", &T);
; Case <= T; Case++)
{
scanf("%d%d%d", &n, &x, &y);
int g = gcd(x, y);
int cnt = n / g;
printf("Case #%d: ", Case);
printf( ? "Yuwgna" : "Iaka");
}
;
}
题意:给你一个n个点,m个集合的图,每个集合中的点都可以以di的距离相互的到达,问你两个人同时从1和n出发,会在那个点相遇。
每个集合内部里的所有的边都是互通的,如果一个个连就要n²了,可以采用增加虚拟结点的方式,来减少点。虚拟一个s,一个e,把他们连接起来。
; i <= m; i++)
{
int w, num;
int s = n + i, e = n + i + m;
scanf("%d%d", &w, &num);
G[s].push_back(edge(e, w));
while(num--)
{
int x;
scanf("%d", &x);
G[e].push_back(edge(x, ));
G[x].push_back(edge(s, ));
}
}
//题意:给你一个n个点,m个集合的图,每个集合中的点都可以以di的距离相互的到达,问你两个人同时从1和n出发,会在那个点相遇。
#include <set>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
#define mem(x,y) memset(x, y, sizeof(x))
#define lson l,m,rt << 1
#define rson m+1,r,rt << 1 | 1
? a : gcd(b, a % b);}
int lcm(int a,int b){return a / gcd(a, b) * b;}
int T, n, m, Case;
LL ans;
;
const LL INF = 1e18;
;
LL d1[ssize], d2[ssize];
struct edge
{
int to;
LL co;
edge(int tt, LL cc):to(tt), co(cc){}
bool operator < (const edge &other)const
{
return co > other.co;
}
};
vector<edge>G[ssize];
void init()
{
; i <= n + * m; i++) G[i].clear();
ans = INF;
}
void dijkstra(int s, LL dis[])
{
; i <= n + * m; i++) dis[i] = INF;
priority_queue<edge>que;
dis[s] = ;
que.push(edge(s, dis[s]));
while(!que.empty())
{
edge p = que.top();que.pop();
int v = p.to;
if(dis[v] < p.co) continue;
; i < G[v].size(); i++)
{
edge e = G[v][i];
if(dis[e.to] > dis[v] + e.co)
{
dis[e.to] = dis[v] + e.co;
que.push(edge(e.to, dis[e.to]));
}
}
}
}
void solve()
{
dijkstra(, d1);
dijkstra(n, d2);
ans = INF;
; i <= n; i++)
{
ans = min(ans, max(d1[i], d2[i]));
}
printf("Case #%d: ", Case);
if(ans == INF)
printf("Evil John\n");
else
{
printf("%I64d\n", ans);
;
; i <= n; i++)
{
if(ans == max(d1[i], d2[i])) cnt++;
}
; i <= n; i++)
{
if(ans == max(d1[i], d2[i])) cnt--, printf("%d%c", i, cnt ? ' ' : '\n' );
}
}
}
int main()
{
scanf("%d", &T);
; Case <= T; Case++)
{
scanf("%d%d", &n, &m);
init();
; i <= m; i++)
{
int w, num;
int s = n + i, e = n + i + m;
scanf("%d%d", &w, &num);
G[s].push_back(edge(e, w));
while(num--)
{
int x;
scanf("%d", &x);
G[e].push_back(edge(x, ));
G[x].push_back(edge(s, ));
}
}
solve();
}
;
}
2015ACM/ICPC亚洲区沈阳站的更多相关文章
- 2015ACM/ICPC亚洲区沈阳站 Pagodas
Pagodas Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Sub ...
- 2015ACM/ICPC亚洲区沈阳站 B-Bazinga
Bazinga Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Sub ...
- hdu 5510 Bazinga (kmp+dfs剪枝) 2015ACM/ICPC亚洲区沈阳站-重现赛(感谢东北大学)
废话: 这道题很是花了我一番功夫.首先,我不会kmp算法,还专门学了一下这个算法.其次,即使会用kmp,但是如果暴力枚举的话,还是毫无疑问会爆掉.因此在dfs的基础上加上两次剪枝解决了这道题. 题意: ...
- 2015ACM/ICPC亚洲区沈阳站 Solution
A - Pattern String 留坑. B - Bazinga 题意:找一个最大的i,使得前i - 1个字符串中至少不是它的子串 思路:暴力找,如果有一个串已经符合条件,就不用往上更新 #inc ...
- 2015ACM/ICPC亚洲区沈阳站 部分题解
链接在这:http://bak.vjudge.net/contest/132442#overview. A题,给出a,b和n,初始的集合中有a和b,每次都可以从集合中选择不同的两个,相加或者相减,得到 ...
- 2015ACM/ICPC亚洲区沈阳站重现赛-HDU5512-Pagodas-gcd
n pagodas were standing erect in Hong Jue Si between the Niushou Mountain and the Yuntai Mountain, l ...
- 2015ACM/ICPC亚洲区沈阳站-重现赛 M - Meeting (特殊建边,最短路)
题意:有\(n\)个点,\(m\)个集合,集合\(E_i\)中的点都与集合中的其它点有一条边权为\(t_i\)的边,现在问第\(1\)个点和第\(n\)个点到某个点的路径最短,输出最短路径和目标点,如 ...
- 2015ACM/ICPC亚洲区沈阳站-重现赛 B - Bazinga (KMP)
题意:给你\(n\)个字符串,\(s_1,s_2,...,s_n\),对于\(i(1\le i\le n)\),找到最大的\(i\),并且满足\(s_j(1\le j<i)\)不是\(s_i\) ...
- 2015ACM/ICPC亚洲区沈阳站-重现赛 D - Pagodas
题意:有\(n\)个数,开始给你两个数\(a\)和\(b\),每次找一个没出现过的数\(i\),要求满足\(i=j+k\)或\(i=j-k\),当某个人没有数可以选的时候判他输,问谁赢. 题解:对于\ ...
随机推荐
- Web项目学习
首先配好jdk,tomcat,下载eclipse,下载bootstrap模板,进行JDBC连接 创建项目 打开Eclipse,选择左上角的File->NEW->最后一个other,选择如下 ...
- elk系列6之tcp模块的使用
preface tcp模块的使用场景如下: 有一台服务器A只需要收集一个日志,那么我们就可以不需要在这服务器上安装logstash,我们通过在其他logstash上启用tcp模块,监听某个端口,然后我 ...
- php网址显示excel表格内容
/** * excel表格内容在网页中显示 * * 首先需要下载PHPExcel 工具包 * 网址: http://phpexcel.codeplex.com/releases/view/119187 ...
- myBatis foreach详解【转】
MyBatis的foreach语句详解 foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合.foreach元素的属性主要有 item,index,collection,ope ...
- Instant Radiosity实现
本来说等把课程作业做完再来弄这个,但是还是没有忍住,先做了,主要原因还是这个算法很容易实现.这个算法在1997年由Keller首次提出.虽然名字叫Instant Radiosity,但是它和Radio ...
- linux下apache各种跳转(包括伪静态)的配置
1.404跳转: vi /etc/httpd/conf/httpd.conf 在虚拟主机配置里添加一行:ErrorDocument 404 /404.html 2.301跳转: 1)将不带www的 ...
- APP的消息推送(极光推送)
APP的消息推送,使用的第三方平台是极光推送 简单案例(以Thinkphp为例): 1.下载下载PHPSDK 2.把PHPSDK目录下的jpush-api-php-client-3.5.1\src\J ...
- 学习笔记——k近邻法
对新的输入实例,在训练数据集中找到与该实例最邻近的\(k\)个实例,这\(k\)个实例的多数属于某个类,就把该输入实例分给这个类. \(k\) 近邻法(\(k\)-nearest neighbor, ...
- 在Linux上挂载Windows共享文件夹,如何开机自动挂载(mount)?
按照一般的思路,我们先将文件夹挂载上去,命令如下: mkdir /mnt/share_software mount //192.9.206.43/share_software /mnt/share_s ...
- BZOJ4551——[Tjoi2016&Heoi2016]树
1.题意: 给定一颗有根树(根为1),有以下 两种操作:1. 标记操作:对某个结点打上标记(在最开始,只有结点1有标记,其他结点均无标记,而且对于某个 结点,可以打多次标记.)2. 询问操作:询问某个 ...