結果

問題 No.1972 Modulo Set
ユーザー raven7959raven7959
提出日時 2023-02-06 16:37:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,960 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 217,708 KB
実行使用メモリ 14,252 KB
最終ジャッジ日時 2023-09-18 03:45:50
合計ジャッジ時間 7,804 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3 ms
4,380 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 4 ms
4,376 KB
testcase_14 AC 5 ms
4,376 KB
testcase_15 WA -
testcase_16 AC 51 ms
7,524 KB
testcase_17 AC 16 ms
4,632 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 43 ms
7,216 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
7,076 KB
testcase_23 AC 100 ms
12,272 KB
testcase_24 AC 32 ms
6,976 KB
testcase_25 AC 53 ms
8,912 KB
testcase_26 WA -
testcase_27 AC 106 ms
12,884 KB
testcase_28 AC 33 ms
6,996 KB
testcase_29 AC 52 ms
8,916 KB
testcase_30 AC 78 ms
10,900 KB
testcase_31 AC 4 ms
4,376 KB
testcase_32 AC 71 ms
10,240 KB
testcase_33 AC 118 ms
14,192 KB
testcase_34 AC 115 ms
14,200 KB
testcase_35 AC 120 ms
14,252 KB
testcase_36 AC 115 ms
14,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,fma,abm,mmx,avx,avx2")
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rrep(i, n) for (int i = (int)(n) - 1; i >= 0; i--)
#define all(x) (x).begin(), (x).end()
#define sz(x) int(x.size())
#define yn(joken) cout<<((joken) ? "Yes" : "No")<<"\n"
#define YN(joken) cout<<((joken) ? "YES" : "NO")<<"\n"
using namespace std;
using ll = long long;
using vi = vector<int>;
using vl = vector<ll>;
using vs = vector<string>;
using vc = vector<char>;
using vd = vector<double>;
using vld = vector<long double>;
using vvi = vector<vector<int>>;
using vvl = vector<vector<ll>>;
using vvs = vector<vector<string>>;
using vvc = vector<vector<char>>;
using vvd = vector<vector<double>>;
using vvld = vector<vector<long double>>;
using vvvi = vector<vector<vector<int>>>;
using vvvl = vector<vector<vector<ll>>>;
using vvvvi = vector<vector<vector<vector<int>>>>;
using vvvvl = vector<vector<vector<vector<ll>>>>;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
const int INF = 1e9;
const ll LINF = 2e18;
template <class T>
bool chmax(T& a, const T& b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T>
bool chmin(T& a, const T& b) {
    if (b < a) {
        a = b;
        return 1;
    }
    return 0;
}
bool ispow2(int i) { return i && (i & -i) == i; }
bool ispow2(ll i) { return i && (i & -i) == i; }
template <class T>
vector<T> make_vec(size_t a) {
    return vector<T>(a);
}
template <class T, class... Ts>
auto make_vec(size_t a, Ts... ts) {
    return vector<decltype(make_vec<T>(ts...))>(a, make_vec<T>(ts...));
}
template <typename T>
istream& operator>>(istream& is, vector<T>& v) {
    for (int i = 0; i < int(v.size()); i++) {
        is >> v[i];
    }
    return is;
}
template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v) {
    for (int i = 0; i < int(v.size()); i++) {
        os << v[i];
        if (i < int(v.size()) - 1) os << ' ';
    }
    return os;
}

static uint32_t RandXor(){
    static uint32_t x=123456789;
    static uint32_t y=362436069;
    static uint32_t z=521288629;
    static uint32_t w=88675123;
    uint32_t t;
 
    t=x^(x<<11);
    x=y; y=z; z=w;
    return w=(w^(w>>19))^(t^(t>>8));
}

static double Rand01(){
    return (RandXor()+0.5)*(1.0/UINT_MAX);
}

void solve(){
    ll N,M;
    cin>>N>>M;
    vl A(N);
    cin>>A;
    rep(i,N) A[i]%=M;
    map<ll,ll> mp;
    rep(i,N) mp[A[i]]++;
    int ans=0;
    set<ll> st;
    for(auto [k,v]:mp){
        if(k*2==M){
            ans++;
            continue;
        }
        if(st.find(M-k)!=st.end()) continue;
        if(mp.find(M-k)==mp.end()){
            ans+=v;
        }
        else{
            ans+=max(v,mp[M-k]);
        }
        st.emplace(k);
    }
    cout<<ans<<"\n";
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();
}
0