結果

問題 No.170 スワップ文字列(Easy)
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 23:24:51
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 1,934 bytes
コンパイル時間 1,031 ms
コンパイル使用メモリ 113,388 KB
実行使用メモリ 35,888 KB
最終ジャッジ日時 2024-10-10 23:24:54
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,420 KB
testcase_01 AC 98 ms
35,380 KB
testcase_02 AC 28 ms
25,488 KB
testcase_03 AC 28 ms
27,656 KB
testcase_04 AC 29 ms
25,748 KB
testcase_05 AC 103 ms
35,888 KB
testcase_06 AC 102 ms
35,640 KB
testcase_07 AC 28 ms
25,740 KB
testcase_08 AC 28 ms
27,656 KB
testcase_09 AC 28 ms
25,544 KB
testcase_10 AC 63 ms
31,536 KB
testcase_11 AC 28 ms
25,488 KB
testcase_12 AC 29 ms
25,744 KB
testcase_13 AC 28 ms
25,620 KB
testcase_14 AC 28 ms
27,724 KB
testcase_15 AC 28 ms
25,488 KB
testcase_16 AC 29 ms
27,584 KB
testcase_17 AC 28 ms
27,584 KB
testcase_18 AC 28 ms
25,616 KB
testcase_19 AC 28 ms
27,660 KB
testcase_20 AC 28 ms
27,716 KB
testcase_21 AC 27 ms
23,600 KB
testcase_22 AC 27 ms
25,416 KB
testcase_23 AC 28 ms
25,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("ABC");
            //5
            //文字列"ABC"の隣り合う2つの文字を何度か入れ替えてできる文字列は、以下の6通りです。
            //ABC ACB
            //BAC BCA
            //CAB CBA
            //ただし、入力文字列自体は含まないので、"ABC"を除いた5種類を作ることができます。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("DDDDDD");
            //0
            //何度入れ替えても、"DDDDDD"以外に作ることはできません。
            //入力文字列自体は含まないので、"DDDDDD"を除いた0種類が答えです。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("XYZYX");
            //29
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string S = InputList[0];

        var stk = new Stack<string>();
        stk.Push(S);
        var VisitedSet = new HashSet<string>() { S };

        while (stk.Count > 0) {
            string Popped = stk.Pop();

            for (int I = 0; I <= S.Length - 2; I++) {
                char[] NewCharArr = Popped.ToCharArray();
                NewCharArr[I] = Popped[I + 1];
                NewCharArr[I + 1] = Popped[I];
                string NewStr = new string(NewCharArr);
                if (VisitedSet.Add(NewStr))
                    stk.Push(NewStr);
            }
        }
        Console.WriteLine(VisitedSet.Count - 1);
    }
}

0