結果

問題 No.48 ロボットの操縦
ユーザー MizunoMizuno
提出日時 2024-09-27 21:24:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,633 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 66,808 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-27 21:24:18
合計ジャッジ時間 1,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,944 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath> // ceil関数を使うため

using namespace std;

int min_commands(int X, int Y, int L) {
    int commands = 0;
    int current_direction = 0; // 0: 北, 1: 東, 2: 南, 3: 西
    
    // Y方向 (北または南) に移動
    if (Y > 0) {  // 北に進む
        commands += (Y + L - 1) / L;  // 必要な前進命令の回数を計算
    } else if (Y < 0) {  // 南に進む
        commands += 2;  // 南に向きを変える命令 (北から南へは2回回転)
        commands += (-Y + L - 1) / L;  // 必要な前進命令の回数を計算
    }

    // X方向 (東または西) に移動
    if (X > 0) {  // 東に進む
        if (Y >= 0) { // 北に向いているか東に向いているか
            commands += 1;  // 東に向きを変える命令
        } else {  // 南に向いている場合
            commands += 1;  // 東に向きを変える命令
        }
        commands += (X + L - 1) / L;  // 必要な前進命令の回数を計算
    } else if (X < 0) {  // 西に進む
        if (Y >= 0) { // 北に向いているか西に向いているか
            commands += 3;  // 西に向くには3回回転が必要
        } else {  // 南に向いている場合
            commands += 1;  // 西に向くには1回回転が必要
        }
        commands += (-X + L - 1) / L;  // 必要な前進命令の回数を計算
    }

    return commands;
}

int main() {
    int X, Y, L;
    
    // 標準入力
    cin >> X >> Y >> L;
    
    // 必要な最小の命令回数を出力
    cout << min_commands(X, Y, L) << endl;
    
    return 0;
}
0