結果

問題 No.2168 双頭ヒドラゲーム
ユーザー 👑 Nachia
提出日時 2022-12-20 01:13:27
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,136 bytes
コンパイル時間 3,668 ms
コンパイル使用メモリ 120,576 KB
最終ジャッジ日時 2025-02-09 17:17:59
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 WA * 8
権限があれば一括ダウンロードができます

ソースコード

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_2(string s, int& p, vector<string>& buf){
    if(p == (int)s.size()) return "";
    if(s[p] != '(') return "";
    vector<string> res;
    p++;
    res.push_back(refine_2(s, p, buf));
    p++;
    res.push_back(refine_2(s, p, buf));
    p++;
    res.push_back(refine_2(s, p, buf));
    rep(t,3) buf.push_back(res[0]);
    buf.push_back("D" + res[0] + "C" + res[1] + "B" + res[2] + "A");
    return buf.back();
}

string refine(string s){
    int p = 0;
    vector<string> buf;
    refine_2(s, p, buf);
    return *max_element(buf.begin(), buf.end());
}

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