青年杯,题解 10 1

    车的突击之路题解

    • 保证行不变,枚举列
    • 保证列不变,枚举行
    • 遇到自身则跳过

    代码如下:

    #include <iostream>
    using namespace std;
    typedef long long LL;
    const char nl = '\n';
    const int N = 2e5 + 10;
    void solve()
    {
        string s;
        cin >> s;
        for (int i = 0; i < 8; ++i)
        {
            if ((char)('a' + i) != s[0])
                cout << (char)('a' + i) << s[1] << nl;
            if ((i + 1) != s[1] - '0')
                cout << s[0] << i + 1 << nl;
        }
    }
    int main()
    {
        int t;
        cin >> t;
        while (t--)
        {
            solve();
        }
        return 0;
    }
    
    ```[题解.md][1]
    
    
      [1]: https://www.lxxblog.cfd/usr/uploads/2024/11/1958569463.md
    
    LXX
    我们的征途是星辰大海
    Warning: Undefined array key "HTTP_ACCEPT_LANGUAGE" in /usr/home/LXX123/domains/www.lxxblog.cfd/public_html/usr/themes/Farallon/comments.php on line 4 Deprecated: stripos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /usr/home/LXX123/domains/www.lxxblog.cfd/public_html/usr/themes/Farallon/comments.php on line 4
    1. 青年杯出题 - Lxx's Blog
      2024-11-11 11:29

      [...]题目列表古代王国的正交拉丁方阵秘文破解石碑中的三阶秘阵二进制谜题:中位数的秘密右 左 错魔法师的非递减之旅位元守护者的试炼车的突击之路题解列表古代王国的正交拉丁方阵秘文题解破解石碑中的三阶秘阵题解二进制谜题:中位数的秘密题解右 左 错题解魔法师的非递减之旅题解位元守护者的试炼题解车的突击之路题解[...]