結果

問題 No.1390 Get together
ユーザー kenken714kenken714
提出日時 2021-02-12 23:43:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 188,224 KB
実行使用メモリ 25,276 KB
最終ジャッジ日時 2024-07-20 01:37:04
合計ジャッジ時間 6,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,448 KB
testcase_01 AC 6 ms
8,448 KB
testcase_02 AC 6 ms
8,576 KB
testcase_03 AC 8 ms
8,576 KB
testcase_04 AC 7 ms
8,448 KB
testcase_05 WA -
testcase_06 AC 7 ms
8,576 KB
testcase_07 WA -
testcase_08 AC 7 ms
8,448 KB
testcase_09 AC 8 ms
8,576 KB
testcase_10 AC 6 ms
8,448 KB
testcase_11 AC 6 ms
8,448 KB
testcase_12 AC 6 ms
8,448 KB
testcase_13 WA -
testcase_14 AC 5 ms
8,448 KB
testcase_15 AC 6 ms
8,320 KB
testcase_16 WA -
testcase_17 AC 144 ms
15,616 KB
testcase_18 AC 238 ms
25,276 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 157 ms
15,492 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 161 ms
15,616 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;

#define REP(i, n) for (ll i = 0; i < n; i++)
#define REPR(i, n) for (ll i = n; i >= 0; i--)
#define FOR(i, m, n) for (ll i = m; i < n; i++)
#define FORR(i, m, n) for (ll i = m; i >= n; i--)
#define REPO(i, n) for (ll i = 1; i <= n; i++)
#define ll long long
#define INF (ll)1 << 60
#define MINF (-1 * INF)
#define ALL(n) n.begin(), n.end()
#define MOD 1000000007
#define P pair<ll, ll>


ll n, m, ans;

ll cnt[210000], mx[210000];
vector<ll> s[210000];
int main(){
    cin >> n >> m;
	vector<ll> b(n), c(n);
	REP(i, n){
        cin >> b[i] >> c[i];
        s[c[i]].push_back(b[i]);
    }
	REP(i, 210000){
        map<ll, ll> mm;
        ll nm = 0;
        REP(j, s[i].size()){
            mm[s[i][j]]++;
            nm = max(nm, mm[s[i][j]]);
        }
        ans += s[i].size() - nm;
    }
    cout << ans << endl;
}
0