結果

問題 No.1994 Confusing Name
ユーザー rogi52rogi52
提出日時 2022-10-03 23:37:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,335 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 211,224 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-08 16:52:14
合計ジャッジ時間 20,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 15 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 1,102 ms
6,400 KB
testcase_13 AC 1,335 ms
6,400 KB
testcase_14 AC 1,223 ms
6,272 KB
testcase_15 AC 993 ms
5,760 KB
testcase_16 AC 872 ms
5,376 KB
testcase_17 AC 1,000 ms
5,632 KB
testcase_18 AC 1,299 ms
6,400 KB
testcase_19 AC 1,312 ms
6,400 KB
testcase_20 AC 1,307 ms
6,400 KB
testcase_21 AC 227 ms
5,376 KB
testcase_22 AC 114 ms
5,376 KB
testcase_23 AC 1,159 ms
6,144 KB
testcase_24 AC 1,172 ms
6,272 KB
testcase_25 AC 677 ms
5,376 KB
testcase_26 AC 324 ms
5,376 KB
testcase_27 AC 1,050 ms
6,016 KB
testcase_28 AC 741 ms
5,376 KB
testcase_29 AC 73 ms
5,376 KB
testcase_30 AC 826 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<string> S(N);
    rep(i,N) cin >> S[i];

    auto T = S;
    sort(T.begin(), T.end());
    rep(i,N) {
        int ans = 0;
        rep(j,int(S[i].size())) {
            for(char c = 'a'; c <= 'z'; c++) {
                if(S[i][j] != c) {
                    swap(S[i][j], c);
                    ans += binary_search(T.begin(), T.end(), S[i]);
                    swap(S[i][j], c);
                }
            }
        }
        cout << ans << "\n";
    }
}
0