博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #417 (Div.2)
阅读量:6652 次
发布时间:2019-06-25

本文共 5622 字,大约阅读时间需要 18 分钟。

 

A. Sagheer and Crossroads

Sagheer is walking in the street when he comes to an intersection of two roads. Each road can be represented as two parts where each part has 3 lanes getting into the intersection (one for each direction) and 3 lanes getting out of the intersection, so we have 4 parts in total. Each part has 4 lights, one for each lane getting into the intersection (l — left, s — straight, r— right) and a light p for a pedestrian crossing.

An accident is possible if a car can hit a pedestrian. This can happen if the light of a pedestrian crossing of some part and the light of a lane that can get to or from that same part are green at the same time.

Now, Sagheer is monitoring the configuration of the traffic lights. Your task is to help him detect whether an accident is possible.

Input

The input consists of four lines with each line describing a road part given in a counter-clockwise order.

Each line contains four integers l, s, r, p — for the left, straight, right and pedestrian lights, respectively. The possible values are 0 for red light and 1 for green light.

Output

On a single line, print "YES" if an accident is possible, and "NO" otherwise.

Examples

input

1 0 0 10 1 0 00 0 1 00 0 0 1

output

YES

input

0 1 1 01 0 1 01 1 0 00 0 0 1

output

NO

input

1 0 0 00 0 0 10 0 0 01 0 1 0

output

NO

Note

In the first example, some accidents are possible because cars of part 1 can hit pedestrians of parts 1 and 4. Also, cars of parts 2 and 3 can hit pedestrians of part 4.

In the second example, no car can pass the pedestrian crossing of part 4 which is the only green pedestrian light. So, no accident can occur.

 

题意:有一个分叉路口,每一边有三条路线和一个人行道,问是否有交通事故;

分析:模拟

source code:

#include 
​using namespace std;​int l[5],r[5],s[5],p[5]; int main() { for(int i=1;i<=4;i++) { scanf("%d%d%d%d",&l[i],&s[i],&r[i],&p[i]); } bool flag = true; if(p[1]==1) { if(l[2]||s[3]||r[4]||l[1]||r[1]||s[1]) flag = false; } if(p[2]) { if(r[1]||l[3]||s[4]||r[2]||l[2]||s[2]) flag = false; } if(p[3]) { if(s[1]||r[2]||l[4]||l[3]||r[3]||s[3]) flag = false; } if(p[4]) { if(l[1]||s[2]||r[3]||l[4]||r[4]||s[4]) flag = false; } if(flag) puts("NO"); else puts("YES"); return 0; }

 

B. Sagheer, the Hausmeister

Some people leave the lights at their workplaces on when they leave that is a waste of resources. As a hausmeister of DHBW, Sagheer waits till all students and professors leave the university building, then goes and turns all the lights off.

The building consists of n floors with stairs at the left and the right sides. Each floor has mrooms on the same line with a corridor that connects the left and right stairs passing by all the rooms. In other words, the building can be represented as a rectangle with n rows and m + 2columns, where the first and the last columns represent the stairs, and the m columns in the middle represent rooms.

Sagheer is standing at the ground floor at the left stairs. He wants to turn all the lights off in such a way that he will not go upstairs until all lights in the floor he is standing at are off. Of course, Sagheer must visit a room to turn the light there off. It takes one minute for Sagheer to go to the next floor using stairs or to move from the current room/stairs to a neighboring room/stairs on the same floor. It takes no time for him to switch the light off in the room he is currently standing in. Help Sagheer find the minimum total time to turn off all the lights.

Note that Sagheer does not have to go back to his starting position, and he does not have to visit rooms where the light is already switched off.

Input

The first line contains two integers n and m (1 ≤ n ≤ 15 and 1 ≤ m ≤ 100) — the number of floors and the number of rooms in each floor, respectively.

The next n lines contains the building description. Each line contains a binary string of length m + 2 representing a floor (the left stairs, then m rooms, then the right stairs) where 0indicates that the light is off and 1 indicates that the light is on. The floors are listed from top to bottom, so that the last line represents the ground floor.

The first and last characters of each string represent the left and the right stairs, respectively, so they are always 0.

Output

Print a single integer — the minimum total time needed to turn off all the lights.

Examples

input

2 200100100

output

5

input

3 4001000000010000010

output

12

input

4 301110011100111001110

output

18

Note

In the first example, Sagheer will go to room 1 in the ground floor, then he will go to room 2 in the second floor using the left or right stairs.

In the second example, he will go to the fourth room in the ground floor, use right stairs, go to the fourth room in the second floor, use right stairs again, then go to the second room in the last floor.

In the third example, he will walk through the whole corridor alternating between the left and right stairs at each floor.

 

题意:从楼梯左边最下方开始,每次走一步,将图中有1的地方熄灯,图中第一列,最后一列是电梯,每次只能走电梯上楼,求最少多少时间将所有灯熄灭;

 

分析:DP,从一层到另一层发生状态转移,但是有一个方向,​ 将第 i 层熄灭后,走左边上楼,​ 将第i层熄灭后,走右边上楼,那么状态转移就是:

需要注意的地方是,边界条件,最后不需要上楼,只有一层的情况;

source code:

#include 
​using namespace std;​const int inf = 0x3f3f3f3f; char maps[20][105]; int l[20],r[20]; int d[20][2]; int main() { int n,m; scanf("%d%d",&n,&m); for(int i=n;i>=1;i--) { scanf("%s",maps[i]); l[i] = m+1; r[i] = 0; for(int j=0;j
=1;i--) { if(r[i]==0) n--; else break; } for(int i=n;i>=1;i--) { l[i] = m - l[i] + 1; } if(n==0) { puts("0"); return 0; } if(n==1) { printf("%d\n",r[1]); return 0; } memset(d,inf,sizeof(d)); d[1][0] = 2*r[1]+1; d[1][1] = m+2; for(int i=2;i

转载于:https://www.cnblogs.com/TreeDream/p/7079784.html

你可能感兴趣的文章
我的友情链接
查看>>
我的友情链接
查看>>
mysql表的锁等待
查看>>
powershell限制进程的CPU的相似性(Set Affinity)
查看>>
第二章 ESXi 安装和Sphere Client 5.0
查看>>
pycharm在创建.py文件时自动添加前缀
查看>>
dhcp
查看>>
Windows Server 2012显示桌面图标
查看>>
linux 复制多个文件夹下的文件到一个文件夹下面
查看>>
ORACLE 日期加减操作
查看>>
写博客的那点缘由
查看>>
教你如何将GNS3的默认telnet软件改为用SecureCRT启动
查看>>
python getopt使用
查看>>
一步一步Wpartition之partition什么时候使用
查看>>
修改linux主机名
查看>>
This is my demo
查看>>
刘启成_shell脚本应用实战
查看>>
前段时间参加个访谈,题目……不让我修改,我是典型的穷人啊……以下是访谈稿...
查看>>
参考博客配置IIS时遇到的问题记录
查看>>
poj - 3254 - Corn Fields (状态压缩)
查看>>