結果

問題 No.2925 2-Letter Shiritori
ユーザー VvyLwVvyLw
提出日時 2024-10-14 13:07:18
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,145 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 119,236 KB
実行使用メモリ 25,452 KB
平均クエリ数 27.00
最終ジャッジ日時 2024-10-14 13:07:22
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <ranges>
#include <cassert>
#include <unordered_set>
namespace man {

}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    using namespace std::views;
    char a;
    std::cin >> a;
    std::unordered_set<std::string> t;
    while(true) {
        std::string s;
        s += a;
        for(const auto c: iota('a', 'z' + 1)) {
            s += c;
            if(t.contains(s)) {
                s.pop_back();
            } else {
                std::cout << "? " << s << std::endl;
                t.emplace(s);
                break;
            }
        }
        if(std::ssize(t) == 51) {
            break;
        }
        char dummy;
        std::cin >> dummy >> s;
        assert(std::ssize(s) == 2);
        if(t.contains(s)) {
            break;
        }
        t.emplace(s);
        a = s.back();
    }
    std::cout << "! WIN" << std::endl;
}
0