結果

問題 No.1377 Half xor Half
ユーザー keymoonkeymoon
提出日時 2021-02-05 22:42:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,967 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 114,516 KB
実行使用メモリ 27,000 KB
最終ジャッジ日時 2024-07-02 13:25:44
合計ジャッジ時間 6,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,016 KB
testcase_01 AC 26 ms
24,568 KB
testcase_02 AC 27 ms
24,884 KB
testcase_03 AC 25 ms
24,756 KB
testcase_04 AC 26 ms
24,884 KB
testcase_05 AC 26 ms
24,788 KB
testcase_06 AC 28 ms
25,008 KB
testcase_07 AC 29 ms
25,068 KB
testcase_08 AC 27 ms
25,068 KB
testcase_09 AC 29 ms
25,012 KB
testcase_10 AC 30 ms
24,816 KB
testcase_11 AC 29 ms
25,260 KB
testcase_12 AC 28 ms
26,736 KB
testcase_13 AC 27 ms
25,068 KB
testcase_14 AC 23 ms
26,796 KB
testcase_15 AC 24 ms
24,884 KB
testcase_16 AC 27 ms
24,800 KB
testcase_17 AC 27 ms
25,016 KB
testcase_18 AC 30 ms
24,884 KB
testcase_19 AC 31 ms
25,140 KB
testcase_20 AC 29 ms
24,888 KB
testcase_21 AC 30 ms
24,952 KB
testcase_22 AC 28 ms
26,928 KB
testcase_23 AC 30 ms
25,264 KB
testcase_24 AC 30 ms
26,736 KB
testcase_25 AC 31 ms
26,860 KB
testcase_26 AC 31 ms
26,980 KB
testcase_27 AC 28 ms
24,688 KB
testcase_28 AC 29 ms
22,836 KB
testcase_29 AC 32 ms
24,688 KB
testcase_30 AC 26 ms
24,884 KB
testcase_31 AC 26 ms
24,712 KB
testcase_32 AC 28 ms
25,140 KB
testcase_33 AC 28 ms
24,760 KB
testcase_34 AC 34 ms
27,000 KB
testcase_35 AC 34 ms
24,700 KB
testcase_36 AC 34 ms
24,884 KB
testcase_37 AC 29 ms
24,756 KB
testcase_38 AC 34 ms
24,888 KB
testcase_39 AC 31 ms
24,884 KB
testcase_40 AC 30 ms
25,132 KB
testcase_41 AC 27 ms
25,008 KB
testcase_42 AC 32 ms
24,816 KB
testcase_43 AC 32 ms
24,812 KB
testcase_44 AC 30 ms
22,708 KB
testcase_45 AC 26 ms
26,852 KB
testcase_46 AC 34 ms
26,872 KB
testcase_47 AC 33 ms
25,136 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        var s = Console.ReadLine().ToArray();
        var t = Console.ReadLine().ToArray();
        List<int> ops = new List<int>();
        void Operation(int x)
        {
            ops.Add(x);
            for (int i = 0; i < n; i++)
            {
                var a = (x + i) % (2 * n);
                var b = (x + i + n) % (2 * n);
                s[a] = (char)(s[a] ^ s[b] ^ '0'); 
            }
        }
        bool Action(string a, string b, int ind)
        {
            if (a == b) return true;
            if (a == "00" || b == "00") return false;
            int first = -1;
            if (a == "11")
            {
                if (b == "01") first = 0;
                if (b == "10") first = 1;
            }
            else if (b == "11")
            {
                if (a == "10") first = 0;
                if (a == "01") first = 1;
            }
            else
            {
                if (a == "01") first = 0;
                if (a == "10") first = 1;
            }
            Operation(ind + first);
            int second = first == 1 ? 0 : 1;
            Operation(ind + second);
            return true;
        }
        for (int i = 0; i < n; i++)
        {
            var prev = $"{s[i]}{s[i + n]}";
            var after = $"{t[i]}{t[i + n]}";
            if (!Action(prev, after, i))
            {
                Console.WriteLine(-1);
                return;
            }
        }
        if (!s.SequenceEqual(t)) throw new Exception();
        Console.WriteLine(ops.Count);
        Console.WriteLine(string.Join("\n", ops));
    }
}
0