結果
問題 | No.200 カードファイト! |
ユーザー | n_vip |
提出日時 | 2015-04-29 00:48:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,902 bytes |
コンパイル時間 | 914 ms |
コンパイル使用メモリ | 107,464 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-05 15:50:06 |
合計ジャッジ時間 | 2,272 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | RE | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | RE | - |
ソースコード
#include <string> #include <vector> #include<iostream> #include<cstdio> #include<cstdlib> #include<stack> #include<queue> #include<cmath> #include<algorithm> #include<functional> #include<list> #include<deque> #include<bitset> #include<set> #include<map> #include<unordered_map> #include<cstring> #include<sstream> #include<complex> #include<iomanip> #include<numeric> #define X first #define Y second #define pb push_back #define rep(X,Y) for (int (X) = 0;(X) < (Y);++(X)) #define rrep(X,Y) for (int (X) = (Y-1);(X) >=0;--(X)) #define repe(X,Y) for ((X) = 0;(X) < (Y);++(X)) #define peat(X,Y) for (;(X) < (Y);++(X)) #define all(X) (X).begin(),(X).end() #define rall(X) (X).rbegin(),(X).rend() using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; template<class T> using vv=vector<vector<T>>; template<class T> ostream& operator<<(ostream &os, const vector<T> &t) { os<<"{"; rep(i,t.size()) {os<<t[i]<<",";} os<<"}"<<endl; return os;} template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";} int main(){ ios_base::sync_with_stdio(false); cout<<fixed<<setprecision(0); int i,j,k; int n,a,c; cin>>n>>a; vector<int> b(a); rep(i,a) cin>>b[i]; cin>>c; vector<int> d(c); rep(i,c) cin>>d[i]; sort(all(d)); vector<int> v(n); rep(i,n) v[i]=d[i%c]; multiset<int> s,t; int re=0; rep(i,n){//cout<<i<<endl; if(i%a==0) s=multiset<int>(all(b)); if(i%c==0) t=multiset<int>(all(d)); //cout<<"{";for(int tmp:s)cout<<tmp<<" ";cout<<endl; int x=*d.begin(); auto it=s.upper_bound(x); if(it!=s.end()){ ++re; s.erase(it); t.erase(*t.begin()); }else{ s.erase(s.begin()); t.erase(*t.rbegin()); } //cout<<"{";for(int tmp:s)cout<<tmp<<" ";cout<<"}"<<endl; } cout<<re<<endl; return 0; }