結果

問題 No.1994 Confusing Name
ユーザー keisuke6keisuke6
提出日時 2022-09-14 16:44:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,159 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 3,346 ms
コンパイル使用メモリ 229,684 KB
実行使用メモリ 10,188 KB
最終ジャッジ日時 2024-05-08 21:04:15
合計ジャッジ時間 19,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 837 ms
10,188 KB
testcase_13 AC 1,159 ms
10,184 KB
testcase_14 AC 1,038 ms
9,852 KB
testcase_15 AC 943 ms
8,448 KB
testcase_16 AC 759 ms
8,036 KB
testcase_17 AC 934 ms
8,428 KB
testcase_18 AC 1,159 ms
10,188 KB
testcase_19 AC 1,158 ms
10,188 KB
testcase_20 AC 1,119 ms
10,184 KB
testcase_21 AC 146 ms
5,376 KB
testcase_22 AC 66 ms
5,376 KB
testcase_23 AC 917 ms
9,976 KB
testcase_24 AC 898 ms
9,876 KB
testcase_25 AC 532 ms
7,516 KB
testcase_26 AC 240 ms
5,504 KB
testcase_27 AC 793 ms
9,508 KB
testcase_28 AC 605 ms
7,552 KB
testcase_29 AC 61 ms
6,940 KB
testcase_30 AC 704 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
#define int int
signed main(){
  int N;
  cin>>N;
  unordered_map<string,int> s;
  vector<string> S(N);
  for(int i=0;i<N;i++){
      cin>>S[i];
      s[S[i]]++;
  }
  vector<string> T=S;
  for(int i=0;i<N;i++){
      int ans = 0;
      for(int k=0;k<S[i].size();k++)for(int j=0;j<26;j++){
          if(S[i][k] == (char)('a'+j)) continue;
          S[i][k] = (char)('a'+j);
          if(s.count(S[i])) ans += s[S[i]];
          S[i] = T[i];
      }
      cout<<ans<<endl;
  }
}
0