Codeforces Round #325 (Div. 2)
/************************************************
* Author :Running_Time
* Created Time :2015/10/12 星期一 16:49:42
* File Name :A.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 1e2 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8;
int a[N]; int main(void) {
int n; scanf ("%d", &n);
for (int i=1; i<=n; ++i) {
scanf ("%d", &a[i]);
}
int ans = 0, i = 1;
bool fir = true;
while (i <= n) {
if (a[i] == 0) {
if (fir) {
i++; continue;
}
else {
int j = i + 1;
while (j <= n) {
if (a[j] == 0) {
j++;
}
else break;
}
if (j == n + 1) break;
if (j - i >= 2) {
i = j; continue;
}
else {
ans += j - i;
i = j;
}
}
}
else { //a[i] = 1;
fir = false;
ans++; i++;
}
}
printf ("%d\n", ans); return 0;
}
/************************************************
* Author :Running_Time
* Created Time :2015/10/12 星期一 16:49:42
* File Name :B.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 55;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8;
int a1[N], a2[N], b[N];
int sum1[N], sum2[N];
bool vis[N]; int main(void) {
int n; scanf ("%d", &n);
for (int i=1; i<n; ++i) {
scanf ("%d", &a1[i]);
}
for (int i=1; i<n; ++i) {
scanf ("%d", &a2[i]);
}
for (int i=1; i<=n; ++i) {
scanf ("%d", &b[i]);
} if (n == 2) {
printf ("%d\n", a1[1] + a2[1] + b[1] + b[2]);
return 0;
} for (int i=1; i<n; ++i) {
sum1[i] = sum1[i-1] + a1[i];
}
for (int i=n-1; i>=1; --i) {
sum2[i] = sum2[i+1] + a2[i];
}
int mn = INF, id = 0;
int ans = 0;
for (int i=0; i<n; ++i) {
if (sum1[i] + b[i+1] + sum2[i+1] < mn) {
mn = sum1[i] + b[i+1] + sum2[i+1];
id = i;
}
}
vis[id] = true; ans += mn;
mn = INF, id = 0;
for (int i=0; i<n; ++i) {
if (sum1[i] + b[i+1] + sum2[i+1] < mn && !vis[i]) {
mn = sum1[i] + b[i+1] + sum2[i+1];
id = i;
}
}
ans += mn;
printf ("%d\n", ans); return 0;
}
暴力+队列 C - Gennady the Dentist
题意:小孩子排队看医生,有一定的连锁反应,问医生最后能治好多少人
分析:开始想用D保存d[]的和,无奈被hack掉了,还是老老实实用队列吧
/************************************************
* Author :Running_Time
* Created Time :2015/10/12 星期一 16:49:42
* File Name :C.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 4e3 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8;
int v[N], d[N], p[N];
bool dead[N]; int main(void) {
int n; scanf ("%d", &n);
for (int i=1; i<=n; ++i) {
scanf ("%d%d%d", &v[i], &d[i], &p[i]);
dead[i] = false;
}
vector<int> ans;
queue<int> Q;
for (int i=1; i<=n; ++i) {
if (!dead[i]) {
ans.push_back (i);
for (int j=i+1; j<=n; ++j) {
if (dead[j]) continue;
p[j] -= v[i]; v[i]--;
if (p[j] < 0) {
dead[j] = true;
Q.push (j);
}
if (v[i] <= 0) break;
}
}
while (!Q.empty ()) {
int x = Q.front (); Q.pop ();
for (int j=x+1; j<=n; ++j) {
if (dead[j]) continue;
p[j] -= d[x];
if (p[j] < 0) {
dead[j] = true;
Q.push (j);
}
}
}
} printf ("%d\n", ans.size ());
for (int i=0; i<ans.size (); ++i) {
printf ("%d%c", ans[i], i == ans.size () - 1 ? '\n' : ' ');
} return 0;
}
题意:一个人从左边走到右边,同时有列车从右边开过来,问这个人能否达到右边没有碰到列车
分析:简答的BFS,车看作不动,人相对车有一个相对运动,还是要用vis标记已访问过的点,比赛时这点忘了,MLE了
/************************************************
* Author :Running_Time
* Created Time :2015/10/12 星期一 16:49:42
* File Name :D.cpp
************************************************/ #include <cstdio>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cstring>
#include <cmath>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <bitset>
#include <cstdlib>
#include <ctime>
using namespace std; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
typedef long long ll;
const int N = 1e2 + 10;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
const double EPS = 1e-8;
char maze[4][N];
bool vis[4][N];
int dx[3] = {-1, 0, 1};
int n, k; bool BFS(int sx, int sy) {
queue<pair<int, int> > Q; Q.push (make_pair (sx, sy));
memset (vis, false, sizeof (vis)); vis[sx][sy] = true;
while (!Q.empty ()) {
int x = Q.front ().first, y = Q.front ().second; Q.pop ();
if (y >= n) return true;
if (y + 1 <= n && maze[x][y+1] != '.') continue;
for (int i=0; i<3; ++i) {
int tx = x + dx[i], ty = y + 1;
if (tx < 1 || tx > 3 || maze[tx][ty] != '.') continue;
ty += 1;
if (ty <= n && maze[tx][ty] != '.') continue;
ty += 1;
if (ty <= n && maze[tx][ty] != '.') continue;
if (vis[tx][ty]) continue;
vis[tx][ty] = true;
Q.push (make_pair (tx, ty));
}
}
return false;
} int main(void) {
int T; scanf ("%d", &T);
while (T--) {
scanf ("%d%d", &n, &k);
for (int i=1; i<=3; ++i) {
scanf ("%s", maze[i] + 1);
}
int sx = 0, sy = 0;
for (int i=1; i<=3; ++i) {
if (maze[i][1] == 's') {
sx = i; sy = 1;
break;
}
}
for (int i=n+1; i<=n+6; ++i) {
maze[1][i] = maze[2][i] = maze[3][i] = '.';
}
printf ("%s\n", BFS (sx, sy) ? "YES" : "NO");
} return 0;
}
Codeforces Round #325 (Div. 2)的更多相关文章
- Codeforces Round #325 (Div. 2) F. Lizard Era: Beginning meet in the mid
F. Lizard Era: Beginning Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/5 ...
- Codeforces Round #325 (Div. 2) D. Phillip and Trains BFS
D. Phillip and Trains Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/586/ ...
- Codeforces Round #325 (Div. 2) C. Gennady the Dentist 暴力
C. Gennady the Dentist Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/586 ...
- Codeforces Round #325 (Div. 2) A. Alena's Schedule 水题
A. Alena's Schedule Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/586/pr ...
- Codeforces Round #325 (Div. 2) B. Laurenty and Shop 前缀和
B. Laurenty and Shop Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/586/p ...
- Codeforces Round #325 (Div. 2) Phillip and Trains dp
原题连接:http://codeforces.com/contest/586/problem/D 题意: 就大家都玩过地铁奔跑这个游戏(我没玩过),然后给你个当前的地铁的状况,让你判断人是否能够出去. ...
- Codeforces Round #325 (Div. 2) Laurenty and Shop 模拟
原题链接:http://codeforces.com/contest/586/problem/B 题意: 大概就是给你一个两行的路,让你寻找一个来回的最短路,并且不能走重复的路. 题解: 就枚举上下选 ...
- Codeforces Round #325 (Div. 2) Alena's Schedule 模拟
原题链接:http://codeforces.com/contest/586/problem/A 题意: 大概就是给你个序列..瞎比让你统计统计什么长度 题解: 就瞎比搞搞就好 代码: #includ ...
- Codeforces Round #325 (Div. 2) D bfs
D. Phillip and Trains time limit per test 1 second memory limit per test 256 megabytes input standar ...
- Codeforces Round #325 (Div. 1) D. Lizard Era: Beginning
折半搜索,先搜索一半的数字,记录第一个人的值,第二个人.第三个人和第一个人的差值,开个map哈希存一下,然后另一半搜完直接根据差值查找前一半的答案. 代码 #include<cstdio> ...
随机推荐
- UltraEdit中使用正则表达式-简单用法
UltraEdit中使用正则表达式 1.认识正则表达式语法: 正则表达式 (UltraEdit Syntax): % 匹配行首 - 表明要搜索的字符串一定在行首. $ 匹配行尾 - 表明要搜索的字符串 ...
- 锁粒度 Deadlocks
锁粒度 MySQL :: MySQL 5.7 Reference Manual :: 14.5.2.4 Locking Reads https://dev.mysql.com/doc/refman/5 ...
- 教你如何配置Ubuntu用于高效、高质量的发送邮件
本文首发在: http://mengxi.me/how-to-setup-ubuntu-sendmail-to-deliver-email-fast-and-reliable/ 在网站上线后,经常会遇 ...
- ios蓝牙开发(四)BabyBluetooth蓝牙库介绍
BabyBluetooth 是一个最简单易用的蓝牙库,基于CoreBluetooth的封装,并兼容ios和mac osx. 特色: 基于原生CoreBluetooth框架封装的轻量级的开源库,可以帮你 ...
- Tomcat 系统架构与设计模式之二
Tomcat 系统架构与设计模式,第 2 部分: 设计模式分析 来自:http://www.ibm.com/developerworks/cn/java/j-lo-tomcat2/ 这个分为两个部分的 ...
- 识别String类型变量的问题
碰到了android无法识别string的问题 Cursor cursor = db.query(true, "user", new String[]{"id" ...
- codevs1148传球游戏
传送门 1148 传球游戏 2008年NOIP全国联赛普及组 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 白银 Silver 题目描述 Description 上体 ...
- Hibernate自定义字段查询
关于Hibernate自定义字段查询的方法,网上有很多,我这里就不详细写了,只把几个查询方法的注意事项说明一下. 废话少说, 进入正题: 假设有2个实体对象,Institution和User,结构与配 ...
- Java中手动提交事务
项目中遇到一个问题,就是在程序的执行过程中需要不断地更新某个信息,但是在springmvc中好像是默认不可以的,那么就需要手动提交 // 从spring容器对象中获取DataSourceTransac ...
- 数据库MySQL技术-基础知识
数据库技术: SQL,关系数据库标准 注意: 环境编码: cmd客户端是固定的gbk编码 而php网页中,是该网页文件的编码(现在主流都是utf8). mysql> set names gb ...