AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC198-C Compass Walking
C#のソース
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static string InputPattern = "InputX";
static List<string> GetInputList()
{
var WillReturn = new List<string>();
if (InputPattern == "Input1") {
WillReturn.Add("5 15 0");
//3
}
else if (InputPattern == "Input2") {
WillReturn.Add("5 11 0");
//3
}
else if (InputPattern == "Input3") {
WillReturn.Add("3 4 4");
//2
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
double[] wkArr = InputList[0].Split(' ').Select(pX => double.Parse(pX)).ToArray();
double R = wkArr[0];
double X = wkArr[1];
double Y = wkArr[2];
double Rest = Math.Sqrt((X * X + Y * Y));
int Answer = 0;
while (true) {
if (Rest >= 2 * R) {
Rest -= R;
Answer++;
}
else if (Rest == R) {
Answer++;
break;
}
else {
Answer += 2;
break;
}
}
Console.WriteLine(Answer);
}
}
解説
ゴールとの距離で場合分けしつつ、シュミレーションしてます。