結果
問題 | No.1390 Get together |
ユーザー | shu8Cream |
提出日時 | 2021-02-12 21:56:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 2,292 ms |
コンパイル使用メモリ | 208,932 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-07-19 21:15:26 |
合計ジャッジ時間 | 6,565 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 96 ms
11,520 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
/** * author: shu8Cream * created: 12.02.2021 21:19:22 **/ #include <bits/stdc++.h> using namespace std; #define rep(i,n) for (int i=0; i<(n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using P = pair<int,int>; using vi = vector<int>; using vvi = vector<vi>; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n,m; cin >> n >> m; vi b(n),c(n),slime(n),bara; rep(i,n){ cin >> b[i] >> c[i]; slime[c[i]]++; } rep(i,n) if(slime[i]>1) bara.push_back(i); //rep(i,bara.size()) cout << bara[i] << endl; int ans = 0; rep(i,bara.size()){ set<int> s; rep(j,n){ if(c[j]==bara[i]) s.insert(b[j]); } ans+=s.size()-1; } cout << ans << endl; }