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> ...
随机推荐
- Python 003- 小知识汇总(更新中)
#查询key是否存在,可以在使用未知的字典的时候使用 #-*- coding:utf-8 -*- D={'a':1,'c':3,'b':2} for key in sorted(D): print(k ...
- firefox浏览器和IE
http://blog.csdn.net/pipisorry/article/details/40899701 firefox浏览器插件 [下载地址add-ons for firefox]皮皮blog ...
- 最短路Dijkstra算法的一些扩展问题
最短路Dijkstra算法的一些扩展问题 很早以前写过关于A*求k短路的文章,那时候还不明白为什么还可以把所有点重复的放入堆中,只知道那样求出来的就是对的.知其然不知其所以然是件容易引发伤痛的 ...
- MRP 流程
正常流程是这样的:需要>MRP>PLANNED ORDER>PR>PO PLANNED ORDER>PR>PO之间的转换可手工或自动设置转换的时间点是根据计划边际, ...
- BAPI_PO_CEATE 与PO_1
- 探讨Ajax中有关readyState(状态值)和status(状态码)的问题
先看下面一段代码,然后给大家详细介绍,Ajax中有关readyState(状态值)和status(状态码)的问题,具体内容如下所示: var getXmlHttpRequest = function ...
- C++中volatile及编译器优化
首先看一下单词"volatile"的释义: volatile [ˈvɑlətl] adj. 易变的,不稳定的; (液体或油)易挥发的; 爆炸性的; 快活的,轻快的; 下边是&qu ...
- 【CAIOJ1177】 子串是否出现
[题目链接] 点击打开链接 [算法] KMP [代码] #include<bits/stdc++.h> using namespace std; #define MAXA 1000010 ...
- 【旧文章搬运】无Device的驱动如何通信
原文发表于百度空间,2009-07-14========================================================================== 标准的驱动 ...
- UVa 11584 Partitioning by Palindromes (简单DP)
题意:给定一个字符串,求出它最少可分成几个回文串. 析:dp[i] 表示前 i 个字符最少可分成几个回文串,dp[i] = min{ 1 + dp[j-1] | j-i是回文}. 代码如下: #pra ...