結果

問題 No.2168 双頭ヒドラゲーム
ユーザー 👑 NachiaNachia
提出日時 2022-12-20 00:58:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-29 02:38:55
合計ジャッジ時間 1,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <array>
#include <atcoder/modint>

using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(int)(n); i++)
const i64 INF = 1001001001001001001;

using Modint = atcoder::static_modint<998244353>;

string refine(string s){
    vector<int> st;
    string Q;
    auto check3 = [&](){
        while(st.size() && st.back() == 2){
            Q.push_back('A');
            st.pop_back();
        }
    };
    for(char c : s){
        if(c == '('){ st.push_back(0); Q += "D"; }
        if(c == '|'){ check3(); st.back()++; Q += "C"; }
        if(c == ')'){ check3(); st.back()++; Q += "B"; }
    }
    check3();
    return Q;
}

int main(){
    string chars = ")|(";
    string T0, T1; cin >> T0 >> T1;
    T0 = refine(T0);
    T1 = refine(T1);
    if(T0 < T1) cout << "1\n"; else cout << "0\n";
    return 0;
}


0