結果

問題 No.2168 双頭ヒドラゲーム
ユーザー 👑 NachiaNachia
提出日時 2022-12-20 01:13:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,136 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 85,892 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 02:40:45
合計ジャッジ時間 1,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 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 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
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_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