結果

問題 No.1708 Quality of Contest
ユーザー rianoriano
提出日時 2021-10-15 23:12:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 4,192 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 176,516 KB
実行使用メモリ 17,308 KB
最終ジャッジ日時 2023-10-17 20:59:34
合計ジャッジ時間 5,461 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 4 ms
4,348 KB
testcase_04 AC 4 ms
4,348 KB
testcase_05 AC 4 ms
4,348 KB
testcase_06 AC 3 ms
4,348 KB
testcase_07 AC 3 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 109 ms
17,308 KB
testcase_10 AC 84 ms
12,640 KB
testcase_11 AC 103 ms
10,936 KB
testcase_12 AC 106 ms
11,812 KB
testcase_13 AC 99 ms
10,140 KB
testcase_14 AC 113 ms
12,224 KB
testcase_15 AC 124 ms
15,284 KB
testcase_16 AC 120 ms
14,972 KB
testcase_17 AC 107 ms
12,680 KB
testcase_18 AC 109 ms
12,944 KB
testcase_19 AC 111 ms
13,840 KB
testcase_20 AC 104 ms
12,516 KB
testcase_21 AC 110 ms
13,064 KB
testcase_22 AC 112 ms
12,292 KB
testcase_23 AC 120 ms
15,076 KB
testcase_24 AC 82 ms
8,772 KB
testcase_25 AC 82 ms
8,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int i=0;i<n;i++)
#define Pr pair<ll,ll>
#define Tp tuple<int,int,int>
#define all(v) v.begin(),v.end()
#define riano_ std::ios::sync_with_stdio(false);std::cin.tie(nullptr);typedef modint<mod> mint
using Graph = vector<vector<ll>>;

const ll mod = 998244353;
template<uint64_t mod>
struct modint{
    uint64_t val;
    constexpr modint(const int64_t val_=0) noexcept:val((val_%int64_t(mod)+int64_t(mod))%int64_t(mod)){}
    constexpr modint operator-() const noexcept{
        return modint(*this)=mod-val;
    }
    constexpr modint operator+(const modint rhs) const noexcept{
        return modint(*this)+=rhs;
    }
    constexpr modint operator-(const modint rhs) const noexcept{
        return modint(*this)-=rhs;
    }
    constexpr modint operator*(const modint rhs) const noexcept{
        return modint(*this)*=rhs;
    }
    constexpr modint operator/(const modint rhs) const noexcept{
        return modint(*this)/=rhs;
    }
    constexpr modint &operator+=(const modint rhs) noexcept{
        val+=rhs.val;
        val-=((val>=mod)?mod:0);
        return (*this);
    }
    constexpr modint &operator-=(const modint rhs) noexcept{
        val+=((val<rhs.val)?mod:0);
        val-=rhs.val;
        return (*this);
    }
    constexpr modint &operator*=(const modint rhs) noexcept{
        val=val*rhs.val%mod;
        return (*this);
    }
    constexpr modint &operator/=(modint rhs) noexcept{
        uint64_t ex=mod-2;
        modint now=1;
        while(ex){
            now*=((ex&1)?rhs:1);
            rhs*=rhs,ex>>=1;
        }
        return (*this)*=now;
    }
    constexpr bool operator==(const modint rhs) noexcept{
        return val==rhs.val;
    }
    constexpr bool operator!=(const modint rhs) noexcept{
        return val!=rhs.val;
    }
    friend constexpr ostream &operator<<(ostream& os,const modint x) noexcept{
        return os<<(x.val);
    }
    friend constexpr istream &operator>>(istream& is,modint& x) noexcept{
        uint64_t t;
        is>>t,x=t;
        return is;
    }
};


//累乗 aのb乗、正しmを法として求める
long long pw(long long a,long long b,long long m){
    if(b==0) return 1;
    else if(b%2==0){
        long long x = pw(a,b/2,m);
        return (x*x)%m;
    }
    else{
        long long x = pw(a,b-1,m);
        return (a*x)%m;
    }
}

//mod逆元
long long modinv(long long a, long long m) {
    long long 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;
}

ll ranmod(ll l,ll r,ll d,ll N){
    ll res = ((pw(10,r-l+1,mod)-1*d%mod)*pw(10,N-r,mod)%mod)*modinv(9,mod)%mod;
    //cout << (pw(10,r-l+2,mod)-1*d%mod)*pw(10,N-r,mod)%mod << endl;
    return res;
}



// 最大公約数を求める
ll gcd(ll x,ll y){
    ll r=1;
    if(x<0) x *= -1;
    if(y<0) y *= -1;
    if(x<=y) swap(x,y);
    if(y==0) r=0;
    while(r>0){
        r=x%y;
        x=y;
        y=r;
    }
    return x;
}


//Cの計算 C[i][j]でiCjを得る
void combination(vector<vector <long long> > &v){
    for(int i = 0;i <v.size(); i++){
        v[i][0]=1;
        v[i][i]=1;
    }
    for(int k = 1;k <v.size();k++){
        for(int j = 1;j<k;j++){
          v[k][j]=(v[k-1][j-1]+v[k-1][j])%mod;
        }
    }
}
    

int main() {
    riano_; ll ans = 0;
    ll N,M,X; cin >> N >> M >> X;
    vector<vector<ll>> ps(M+1);
    rep(i,N){
        ll a,b; cin >> a >> b;
        ps[b].push_back(a);
    }
    vector<ll> eff;
    rep(i,M+1){
        if(ps[i].size()==0) continue;
        sort(all(ps[i])); reverse(all(ps[i]));
        rep(j,ps[i].size()){
            if(j==0){
                eff.push_back(X+ps[i][0]);
            }
            else{
                eff.push_back(ps[i][j]);
            }
        }
    }
    sort(all(eff)); reverse(all(eff)); 
    ll K; cin >> K;
    ll cnt[N+1];
    rep(i,N+1) cnt[i] = 0;
    rep(i,K){
        ll c; cin >> c;
        cnt[c]++;
    }
    rep(i,N){
        cnt[N-1-i] += cnt[N-i];
    }
    rep(i,N){
        ans += cnt[i+1]*eff[i];
    }
    cout << ans << endl;
}
0