結果

問題 No.2761 Substitute and Search
ユーザー t98slidert98slider
提出日時 2024-05-17 22:25:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 4,000 ms
コード長 1,846 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 223,012 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 22:25:48
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 37 ms
6,944 KB
testcase_05 AC 163 ms
6,940 KB
testcase_06 AC 196 ms
6,940 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 164 ms
6,940 KB
testcase_09 AC 26 ms
6,940 KB
testcase_10 AC 191 ms
6,944 KB
testcase_11 AC 25 ms
6,940 KB
testcase_12 AC 104 ms
6,940 KB
testcase_13 AC 109 ms
6,940 KB
testcase_14 AC 94 ms
6,944 KB
testcase_15 AC 106 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, l, q;
    cin >> n >> l >> q;
    vector<string> s(n);
    for(auto &&ss : s) cin >> ss;
    sort(s.begin(), s.end());
    vector<int> ord(n);
    vector<bool> used(n);
    iota(ord.begin(), ord.end(), 0);

    auto fr = [&](string &t){
        int m = t.size();
        int ok = -1, ng = n, mid;
        while(ok + 1 < ng){
            mid = (ok + ng) / 2;
            (t >= s[ord[mid]].substr(0, m) ? ok : ng) = mid;
        }
        return ok;
    };
    auto fl = [&](string &t){
        int m = t.size();
        int ok = -1, ng = n, mid;
        while(ok + 1 < ng){
            mid = (ok + ng) / 2;
            (t > s[ord[mid]].substr(0, m) ? ok : ng) = mid;
        }
        return ok;
    };

    while(q--){
        int cmd;
        cin >> cmd;
        if(cmd == 1){
            int k;
            char c1, c2;
            cin >> k >> c1 >> c2;
            k--;
            for(int i = 0; i < n; i++){
                if(s[i][k] == c1){
                    s[i][k] = c2;
                    used[i] = true;
                }else used[i] = false;
            }
            stable_sort(ord.begin(), ord.end(), [&](int lhs, int rhs){
                if(used[lhs] ^ used[rhs]) return s[lhs] < s[rhs];
                return false;
            });
        }else{
            string t;
            cin >> t;
            cout << fr(t) - fl(t) << '\n';
        }
    }
}
0