zoukankan      html  css  js  c++  java
  • Codeforces Round #180 (Div. 2) B. Sail(简单)

    B. Sail
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 test(s)
    input
    5 0 0 1 1
    SESNW
    output
    4
    input
    10 5 3 3 6
    NENSWESNEE
    output
    -1
    Note

    In the first sample, they can stay at seconds 13, and move at seconds 24.

    In the second sample, they cannot sail to the destination.

     第一次用C#交题~

     1 using System;
     2 
     3 class Slove
     4 {
     5     public static int Main()
     6     {
     7         int t, sx, sy, ex, ey, ans = 0;
     8         string mov;
     9         string str = Console.ReadLine();
    10         string[] sstr = str.Split(' ');
    11         t = Convert.ToInt32(sstr[0]);
    12         sx = Convert.ToInt32(sstr[1]);
    13         sy = Convert.ToInt32(sstr[2]);
    14         ex = Convert.ToInt32(sstr[3]);
    15         ey = Convert.ToInt32(sstr[4]);
    16         //Console.WriteLine(t + " " + sx + " " + sy + " " + ex + " " + ey);
    17         mov = Console.ReadLine();
    18         foreach (char c in mov)
    19         {
    20             if (sx == ex && sy == ey) break;
    21             ans++;
    22             switch (c)
    23             {
    24                 case 'E':
    25                     if (ex > sx) sx++;
    26                     break;
    27                 case 'S':
    28                     if (ey < sy) sy--;
    29                     break;
    30                 case 'W':
    31                     if (ex < sx) sx--;
    32                     break;
    33                 case 'N':
    34                     if (ey > sy) sy++;
    35                     break;
    36             }
    37         }
    38         if (sx == ex && sy == ey) Console.WriteLine(ans);
    39         else Console.WriteLine(-1);
    40         return 0;
    41     }
    42 }
  • 相关阅读:
    【eoe资源】通过片段创建灵活的用户界面
    史上最全的Android开发索引帖
    临时记录
    五种开源协议的比较(BSD,Apache,GPL,LGPL,MIT)
    【转】深入探讨 Android 传感器
    Java Collections Framework Java集合框架List,Map,Set等全面介绍之概要篇
    谷歌 G1 android APK安装器 离线安装软件
    【转】請為你的 Android 程式加上 obfuscation 吧!
    【转】Android Toolchain与Bionic Libc
    用VirtualBox在XP环境下虚拟Ubuntu的过程
  • 原文地址:https://www.cnblogs.com/cszlg/p/3099129.html
Copyright © 2011-2022 走看看