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 }
  • 相关阅读:
    WCF+EntityFramework+mysql总结
    实现Win7远程桌面关机和重启
    EF 4.1 一些操作
    Ado.net利用反射执行SQL得到实体
    .net IL 指令速查
    VS2010 /VC/bin/rcdll.dll 无法找到资源编译器
    Win7下 httpRequest带证书请求https网站
    VS2010 自动关闭的问题解决方法
    Android 之 悬浮窗口
    论 Java 中获取一组不重复的随机数之性能问题
  • 原文地址:https://www.cnblogs.com/cszlg/p/3099129.html
Copyright © 2011-2022 走看看