Sail

2024-05-05 12:58
文章标签 sail

本文主要是介绍Sail,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目:

N - Sail
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit  Status

Description

The polar bears are going fishing. They plan to sail from (sx, sy) to (ex, ey). However, the boat can only sail by wind. At each second, the wind blows in one of these directions: east, south, west or north. Assume the boat is currently at (x, y).

  • If the wind blows to the east, the boat will move to (x + 1, y).
  • If the wind blows to the south, the boat will move to (x, y - 1).
  • If the wind blows to the west, the boat will move to (x - 1, y).
  • If the wind blows to the north, the boat will move to (x, y + 1).

Alternatively, they can hold the boat by the anchor. In this case, the boat stays at (x, y). Given the wind direction for t seconds, what is the earliest time they sail to (ex, ey)?

Input

The first line contains five integers t, sx, sy, ex, ey(1 ≤ t ≤ 105,  - 109 ≤ sx, sy, ex, ey ≤ 109). The starting location and the ending location will be different.

The second line contains t characters, the i-th character is the wind blowing direction at the i-th second. It will be one of the four possibilities: "E" (east), "S" (south), "W" (west) and "N" (north).

Output

If they can reach (ex, ey) within t seconds, print the earliest time they can achieve it. Otherwise, print "-1" (without quotes).

Sample Input

Input
5 0 0 1 1
SESNW
Output
4
Input
10 5 3 3 6
NENSWESNEE
Output
-1
代码:

#include <stdio.h>
#include <string.h>
#define MAX 100010
char str[MAX];int main()
{int t, sx, sy, ex, ey, e, s, w, n, i, tag, nx, ny;while(~scanf("%d%d%d%d%d", &t, &sx, &sy, &ex, &ey)){getchar();tag = e = w = s = n = 0;memset(str, 0, sizeof(str));gets(str);nx = sx - ex;ny = sy - ey;for(i = 0; i < t; i++){switch(str[i]){case 'E': e++; break;case 'W': w++; break;case 'S': s++; break;case 'N': n++; break;}}if( ((sx < ex) && (sx + e < ex)) || ((sx > ex) && (sx - w > ex)) || ((sy < ey) && (sy + n < ey)) || ((sy > ey) && (sy - s > ey)) ) {puts("-1");continue;}if((sx == ex) || (sy == ey)) tag++;for(i = 0; i < t; i++){if(2 == tag) break;if((sx < ex) && e) { if('E' == str[i]) {nx++; if(0 == nx) tag++; continue;} }if((sx > ex) && w) { if('W' == str[i]) {nx--; if(0 == nx) tag++; continue;} }if((sy < ey) && n) { if('N' == str[i]) {ny++; if(0 == ny) tag++; continue;} }if((sy > ey) && s) { if('S' == str[i]) {ny--; if(0 == ny) tag++; continue;} }}if(2 == tag) printf("%d\n", i);}return 0;
}

总结;

这是一道水题。但是我却wa了好几次。。。,想了一下,wa是因为之前有些东西没有考虑到,比如,sx==ex或是sy==ey,还有一点,就是在计算最短时间时,我用来计数的是原有的s、n、e、x,而不是所需的次数nx、ny,这个应该是因为有点逻辑混乱了。继续加油!!!

这篇关于Sail的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/961773

相关文章

RK3568技术笔记之三 SAIL-RK3568开发板板卡功能测试

从这里开始,就是老生常谈系列之一:板卡功能测试。 放一张图镇一下帖 按照我自己顺手的方式,把这板子功能测一下。 先把开发板串口信息打印出来。 工具 功能 备注 电脑(必备) 提供使用终端软件环境 需要具备至少2路USB HOST 终端软件 查看启动信息 光盘\通用工具\工具软件\MobaXterm 电源适配器(必备) 为产品提供正确的电源 5~12V DC 1A

laravel sail的坑

sail composer update或者sail composer require package导致更新sail本身,而处于容器内的/var/www/html/vendor/laravel/sail/bin/sail文件被占用无法删除,导致跟新产生冲突 解决方案: 不让包更新 由图可知sail由1.12.9变化到其他版本,所以只需要修改composer.json为固定的1.12

Laravel Sail

先创建一个laravel应用,就先用他取的默认名字 example.com ./vendor/bin/sail up -d [+] Running 6/6  ✔ Container example-app-mailpit-1       Running

百度文心(ERNIE)荣获2020世界人工智能大会最高荣誉SAIL奖

关注官方公众号*【百度NLP】*,及时获取更多自然语言处理业界前沿技术!!! 7月9日,2020世界人工智能大会(WAIC)正式开幕,大会颁布最高奖项SAIL奖(Super AI Leader,卓越人工智能引领者),百度文心(ERNIE)知识增强语义理解技术与平台获奖,百度技术委员会主席吴华上台领奖。 百度文心(ERNIE)获得SAIL奖 百度技术委员会主席吴华(左四)领奖 SAIL奖是世界

获得2020世界人工智能大会最高奖项SAIL奖的“百度文心”是什么?

说起百度那是众所周知啊,不过这个百度文心是个什么东东呢?还获得了2020世界人工智能大会最高奖项SAIL奖。下面就为大家做详细介绍:   文心是什么?百度的对它的定义是:领先的语义理解技术与平台文心(ERNIE),基于飞桨进行打造,对先进的预训练模型、全面的NLP算法集、端到端开发套件和平台化服务进行一体化集成,具有一站式NLP开发与服务的能力,企业级文本模型可以更简单、高效地进行定制。在媒体