結果

問題 No.1972 Modulo Set
ユーザー Haa
提出日時 2022-06-10 21:31:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 179,792 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-10-05 01:26:24
合計ジャッジ時間 5,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    ll n, m; cin >> n >> m;
    VI a(n); REP(i,n) cin >> a[i];
    map<ll,int> mp;
    REP(i,n) mp[a[i]%m]++;
    set<ll> used;
    int ans=0;
    for(auto p:mp){
        if(p.first==0||p.first*2==m){
            ans+=min(1,p.second);
            continue;
        }
        if(used.find(min(p.first,m-p.first))!=used.end())
            continue;
        used.insert(min(p.first,m-p.first));
        if(mp.find(m-p.first)==mp.end())
            ans+=p.second;
        else
            ans+=max(p.second,mp[m-p.first]);
    }
    cout << ans << endl;
    return 0;
}
0