結果
問題 | No.1454 ツブ消ししとるなEasy |
ユーザー | oliverx3 |
提出日時 | 2021-03-18 11:22:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 4,195 bytes |
コンパイル時間 | 4,704 ms |
コンパイル使用メモリ | 273,792 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 08:27:52 |
合計ジャッジ時間 | 5,569 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 32 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 27 ms
5,376 KB |
testcase_08 | AC | 27 ms
5,376 KB |
testcase_09 | AC | 27 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> // using namespace std; #if __has_include(<atcoder/all>) #include<atcoder/all> // using namespace atcoder; #endif #define int long long #pragma region header #pragma region alias using lint = long long; using ll = long long; using P = std::pair<int,int>; template<class T> using prique = std::priority_queue<T,std::vector<T>,std::greater<T>>; #pragma endregion #pragma region macros #define rep(i, n) for(int i = 0;i<(int)(n);i++) #define REP(i, m, n) for(int i = (m);i<(int)(n);i++) #define drep(i, n) for(int i = (n)-1;i>=0;i--) #define DREP(i, m, n) for(int i = (m)-1;i>=(int)(n);i--) #define all(v) (v).begin(),(v).end() #define reall(v) (v).rbegin(),(v).rend() template<class T, class U> bool chmax(T& a,const U b) { if(a < b) { a = b; return true; } return false; } template<class T, class U> bool chmin(T& a,const U b) { if(a>b) { a = b; return true; } return false; } std::map<int,int> prime_div(int n) { std::map<int,int> mp; if(~n&1) while(~n&1) n>>=1,mp[2]++; for(int i = 3;i<=std::sqrt(n);i+=2) { if(n%i==0) { while(n%i==0) { n/=i; mp[i]++; } } } if(n!=1) mp[n]++; return mp; } #pragma endregion #pragma region constant constexpr long long inf = 1LL << 61; constexpr int dx[9] = {1, 0, -1, 0, 1, 1, -1, -1, 0}; constexpr int dy[9] = {0, 1, 0, -1, 1, -1, 1, -1, 0}; constexpr long long mod = 1e9+7; constexpr long long MOD = 998244353; #pragma endregion #pragma region inout template<class T> std::ostream& operator<<(std::ostream& stream, const std::vector<T>& v) { for(int i = 0; i < (int)(v.size()); i++) { stream << v[i]; if(i != (int)(v.size()) - 1) stream << ' '; } return stream; } template<typename Itr> inline void print(const Itr& begin, const Itr& end, bool endline = true, const char* BEGIN = "{", const char* mid = ", ", const char* END = "}") { if(begin == end) return; std::cout << BEGIN << *begin; for(Itr itr = begin+1; itr < end; itr++) std::cout << mid << *itr; std::cout << END; if(endline) std::endl(std::cout); return; } template<class T> std::istream& operator>>(std::istream& stream, std::vector<T>& v) { for(T& p:v) stream >> p; return stream; } template<typename Itr> inline void input(Itr begin, Itr end) { for(Itr& itr = begin; itr < end; itr++) std::cin >> *itr; return; } template<class T, class U> std::ostream& operator<<(std::ostream& stream, const std::pair<T,U>& pair) { return stream << pair.first << ' ' << pair.second; } template<class T, class U> inline void print(const std::pair<T,U>& pair,const bool endline = true, const char* begin = "(", const char* mid = ", ", const char* end = ")") { std::cout << begin << pair.first << mid << pair.second << end; if(endline) std::endl(std::cout); else std::cout << ' '; return; } template<class T, class U> std::istream& operator>>(std::istream& stream, std::pair<T,U>& pair) { return stream >> pair.first >> pair.second; } template<class T, class U> inline void input(std::pair<T,U>& pair, const bool first = true, const bool second = true) { if(first) std::cin >> pair.first; if(second) std::cin >> pair.second; } #pragma endregion #pragma region DEBUG #ifdef _DEBUG #define debug(x) {do{std::cout << #x << ": ";view(x);}while(0);} #else #define debug(x) #endif template<class T> inline void view(const T& x) { std::cout << x << std::endl; } template<class T> inline void view(const std::vector<T>& v) { print(all(v)); } #pragma endregion #pragma endregion signed main(void) { int n,m,x,y; std::cin >> n >> m >> x >> y; std::vector<int> v; int sum = 0,cnt = 0; rep(i, n) { int a; std::cin >> a; if(y<a&&a<x) v.push_back(a); else if(a>=x) sum+=a; else cnt++; } std::sort(reall(v)); int must = n-m; if(cnt+v.size()<must) return !printf("Handicapped\n"); must-=cnt; chmax(must,0); rep(i, v.size()-must) { sum+=v[i]; debug(v[i]); } std::cout << sum << std::endl; return 0; }