結果
問題 | No.2623 Room Allocation |
ユーザー |
|
提出日時 | 2024-02-09 21:35:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 1,164 bytes |
コンパイル時間 | 1,628 ms |
コンパイル使用メモリ | 170,904 KB |
実行使用メモリ | 12,432 KB |
最終ジャッジ日時 | 2024-09-28 14:47:46 |
合計ジャッジ時間 | 3,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
// Problem: No.2623 Room Allocation // Contest: yukicoder // URL: https://yukicoder.me/problems/no/2623 // Memory Limit: 512 MB // Time Limit: 2000 ms #include<bits/stdc++.h> #define debug(x) cerr<<(#x)<<" "<<(x)<<endl typedef long long ll; typedef long double ld; typedef unsigned long long ull; #define pii pair<ll,ll> #define rep(i,a,b) for(ll i=(a);i<=(b);++i) #define per(i,a,b) for(ll i=(a);i>=(b);--i) using namespace std; bool Mbe; ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } void write(ll x){ if(x<0)putchar('-'),x=-x; if(x>9)write(x/10); putchar(x%10+'0'); } const ll N=5e5+9,INF=1e15; ll n,X,Y,a[N][2],ans,b[N]; char typ[2]; bool Med; int main(){ cerr<<fabs(&Med-&Mbe)/1048576.0<<"MB\n"; n=read(),X=read(),Y=read(); rep(i,1,n){ ll x=read(); scanf("%s",typ); if(typ[0]=='A')a[i%(X+Y)][0]+=x; else a[i%(X+Y)][1]+=x; } //选出 X 个 A, Y 个 B,sum 最大 rep(i,1,X+Y)b[i]=a[i-1][1]-a[i-1][0]; sort(b+1,b+X+Y+1); rep(i,0,X+Y-1)ans+=a[i][0]; reverse(b+1,b+X+Y+1); rep(i,1,Y)ans+=b[i]; write(ans); return 0; }