結果

問題 No.1994 Confusing Name
ユーザー polyester
提出日時 2022-07-01 22:09:25
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 819 bytes
コンパイル時間 3,625 ms
コンパイル使用メモリ 144,792 KB
実行使用メモリ 338,432 KB
最終ジャッジ日時 2024-11-26 05:19:10
合計ジャッジ時間 55,497 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 TLE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
using namespace std;
using ll = long long;
int main() {
  int n;
  cin >> n;
  vector<string> vs(n);
  map<string, int> mp;
  for(int i = 0; i < n; i++) {
    cin >> vs[i];
    mp[vs[i]]++;
  }
  vector<int> ans(n, 0);
  for(int i = 0; i < n; i++) {
    for(int j = 0; j < vs[i].size(); j++) {
      string tmp = vs[i];
      for(int k = 0; k < 26; k++) {
        if(vs[i][j] == (char)(k + 'a')) {
          continue;
        }
        tmp[j] = (char)(k + 'a');
        ans[i] += mp[tmp];
      }
    }
  }
  for(int i = 0; i < n; i++) {
    cout << ans[i] << endl;
  }
  return 0;
}
0