結果

問題 No.1994 Confusing Name
ユーザー erbowlerbowl
提出日時 2022-08-07 16:30:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 618 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 2,601 ms
コンパイル使用メモリ 220,628 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-09-17 09:44:03
合計ジャッジ時間 11,185 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 581 ms
24,576 KB
testcase_13 AC 563 ms
32,512 KB
testcase_14 AC 577 ms
33,536 KB
testcase_15 AC 452 ms
28,416 KB
testcase_16 AC 398 ms
25,216 KB
testcase_17 AC 450 ms
28,032 KB
testcase_18 AC 584 ms
34,048 KB
testcase_19 AC 599 ms
34,304 KB
testcase_20 AC 618 ms
34,304 KB
testcase_21 AC 78 ms
9,472 KB
testcase_22 AC 35 ms
6,944 KB
testcase_23 AC 509 ms
28,928 KB
testcase_24 AC 485 ms
28,032 KB
testcase_25 AC 256 ms
19,200 KB
testcase_26 AC 113 ms
11,392 KB
testcase_27 AC 424 ms
26,112 KB
testcase_28 AC 307 ms
20,480 KB
testcase_29 AC 26 ms
6,940 KB
testcase_30 AC 328 ms
22,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n;
    std::cin >> n;
    vector<map<string,ll>> msame(11);
    vector<string> ori(n);
    vector<vector<map<string,ll>>> ms(11,vector<map<string,ll>>(11));
    for (int i = 0; i < n; i++) {
        string s;
        std::cin >> s;
        ori[i] = s;
        msame[s.size()][s]++;
        for (int j = 0; j < s.size(); j++) {
            ms[s.size()][j][s.substr(0,j)+s.substr(j+1,s.size()-j-1)]++;
        }
    }
    for (int i = 0; i < n; i++) {
        ll ans = 0;
        string s = ori[i];
        for (int j = 0; j < s.size(); j++) {
            ans += ms[s.size()][j][s.substr(0,j)+s.substr(j+1,s.size()-j-1)]-1;
        }
        ans -= msame[s.size()][s]-1;
        std::cout << ans << std::endl;
    }
}
0