結果
問題 | No.1994 Confusing Name |
ユーザー | WONDER0 |
提出日時 | 2022-07-10 10:13:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 339 ms / 2,000 ms |
コード長 | 3,202 bytes |
コンパイル時間 | 2,796 ms |
コンパイル使用メモリ | 227,068 KB |
実行使用メモリ | 28,116 KB |
最終ジャッジ日時 | 2024-06-10 20:13:33 |
合計ジャッジ時間 | 8,905 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 5 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 244 ms
20,184 KB |
testcase_13 | AC | 311 ms
26,712 KB |
testcase_14 | AC | 304 ms
27,536 KB |
testcase_15 | AC | 259 ms
23,956 KB |
testcase_16 | AC | 191 ms
21,752 KB |
testcase_17 | AC | 238 ms
23,552 KB |
testcase_18 | AC | 328 ms
27,732 KB |
testcase_19 | AC | 339 ms
27,864 KB |
testcase_20 | AC | 332 ms
28,116 KB |
testcase_21 | AC | 47 ms
8,108 KB |
testcase_22 | AC | 23 ms
6,944 KB |
testcase_23 | AC | 270 ms
23,816 KB |
testcase_24 | AC | 250 ms
23,072 KB |
testcase_25 | AC | 144 ms
15,772 KB |
testcase_26 | AC | 70 ms
9,520 KB |
testcase_27 | AC | 240 ms
21,812 KB |
testcase_28 | AC | 171 ms
19,292 KB |
testcase_29 | AC | 16 ms
6,940 KB |
testcase_30 | AC | 180 ms
19,160 KB |
ソースコード
#include<bits/stdc++.h> #include <unordered_map> #define int long long #define ll long long #define rep(i, n) for(ll i = 0; i < (n); i++) #define rep2(i, n) for(ll i = 0; n; i++) #define rep3(i,s,n) for(ll i = (s); i < (n); i++) #define rep4(i,s,n) for(ll i = (s); n; i++) #define repe(v, V) for(auto& v: V) #define all(x) (x).begin(),(x).end() #define v vector #define mod(a,b) (((a) % (b) + (b)) % (b)) /* 負の数に対応した剰余 */ #define pi 3.14159265358979 #define eps 1e-13 #define inf 9223372036854775807 #define MAX_LL 9223372036854775807 #define umap unordered_map using namespace std; const int dx[4] = { 1, 0, -1, 0 }; const int dy[4] = { 0, 1, 0, -1 }; struct Edge { int to; int cost = 1; }; using Graph = vector<vector<Edge>>; template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>; int to_base10(string Nx, int base) /* N進数から10進数に変換 */ { int N10 = 0; rep(i, Nx.length()) N10 += stoll(Nx.substr(Nx.length() - 1 - i, 1)) * pow(base, i); return N10; } string to_baseN(int N10, int base, int min_digits = 1) /* 10進数からN進数に変換 */ { string r; while (N10 != 0) { r = to_string(N10 % base) + r; N10 /= base; } while (r.length() < min_digits) r = "0" + r; return r; } v<pair<int, int>> prime_factorize(int N) /* 素因数分解 .first: 素数, .second: 指数 */ { v<pair<int, int>> res; rep4(a, 2, a * a <= N) { if (N % a != 0) continue; int ex = 0; while (N % a == 0) { ++ex; N /= a; } res.push_back({a, ex}); } if (N != 1) res.push_back({N, 1}); return res; } v<int> divisors(int N)/*約数列挙*/ {v<int> r;rep4(i, 1, i * i <= N) {if (N % i == 0) {r.push_back(i);if(i != N / i) r.push_back(N / i);}}return r;} int modinv(int a, int m)/*逆元*/ { int b = m, u = 1, v = 0;while (b) { long long t = a / b;a -= t * b; swap(a, b); u -= t * v; swap(u, v); }u %= m;if (u < 0) u += m; return u;} int sigma(int a, int b)/*a,a+1,...,bの総和*/ {return b * (b + 1) / 2 - a * (a - 1) / 2;} v<v<int>> Pascal(int N, int mod = MAX_LL)/*パスカルの三角形(nCk=v[n][k]) O(N^2)*/ { v<v<int>> com(N + 1,v<int>(N + 1)); com[0][0] = 1; for (int i = 1; i < N + 1; ++i) { com[i][0] = 1; for (int j = 1; j < N + 1; j++) { com[i][j] = (com[i - 1][j - 1] + com[i - 1][j]) % mod; } }return com; } int Pow(int n, int p, int mod = MAX_LL)/* 指数関数のLL版(繰り返し2乗法) modあり */ {int ans = 1;int now = n;for (; p > 0; p >>= 1){if ((p & 1) == 1){ans *= now;ans %= mod;}now *= now;now %= mod;}return ans;} void printVec(const vector<int>& vec)/* vectorの中身をprint */ {cout << "";for (auto it = vec.begin(); it != vec.end(); ++it) {cout << *it << " "; } cout << endl;} void makeset(v<int>& vec)/* vectorをソートし、重複要素を削除*/ { sort(vec.begin(), vec.end()); vec.erase(unique(vec.begin(), vec.end()), vec.end());} int N, M; signed main() { cout << setprecision(15); cin >> N; v<string> S(N); repe(x, S) cin >> x; umap<string, int> mp; rep(i, N) { rep(j, S[i].size()) { string tmp = S[i]; tmp[j] = '#'; mp[tmp]++; } } rep(i, N) { int cnt = 0; rep(j, S[i].size()) { string tmp = S[i]; tmp[j] = '#'; cnt += mp[tmp] - 1; } cout << cnt << endl; } }