結果

問題 No.2924 <===Super Spaceship String===>
ユーザー InTheBloomInTheBloom
提出日時 2024-10-12 15:20:33
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,483 bytes
コンパイル時間 5,019 ms
コンパイル使用メモリ 170,156 KB
実行使用メモリ 14,528 KB
最終ジャッジ日時 2024-10-12 15:20:38
合計ジャッジ時間 5,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 8 ms
6,824 KB
testcase_08 AC 7 ms
6,816 KB
testcase_09 AC 21 ms
6,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    string S = readln.chomp;

    // <のペアを先に見つける
    // -> あるペアを消せる条件は、ペアの間にあるペアがすべて消える かつ ペアの間に=が1以上存在

    const int N = S.length.to!int;
    auto idx = new int[](0);
    auto pair = new int[](N);
    auto deleted = new bool[](N);
    pair[] = -1;

    foreach_reverse (i; 0..N) {
        if (S[i] == '<') {
            if (0 < idx.length) {
                pair[i] = idx[$ - 1];
                idx.length--;
            }
        }
        if (S[i] == '>') {
            idx ~= i;
        }
    }

    // うしろから見ていく
    foreach_reverse (i; 0..N) {
        if (pair[i] == -1) continue;
        bool res = false;
        foreach (j; i + 1..pair[i]) {
            if (S[j] == '=') res = true;

            if (pair[j] == -1) continue;
            if (!deleted[j]) {
                res = false;
                break;
            }
            else {
                j = pair[j];
            }
        }
        deleted[i] = res;
    }

    // 前から見ていく
    int ans = N;
    foreach (ref i; 0..N) {
        if (deleted[i]) {
            ans -= pair[i] - i + 1;
            i = pair[i];
        }
    }
    writeln(ans);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0