結果

問題 No.2671 NUPC Decompressor
ユーザー Xelmeph
提出日時 2024-02-28 15:23:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 4,380 bytes
コンパイル時間 3,864 ms
コンパイル使用メモリ 142,248 KB
最終ジャッジ日時 2025-02-19 21:53:15
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <array>
#include <vector>
#include <deque>
#include <list>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <stack>
#include <queue>
#include <bitset>
#include <tuple>
#include <cmath>
#include <complex>
#include <algorithm>
#include <utility>
#include <regex>
#include <cstdint>
#include <numeric>
#include <functional>
#include <cassert>
using namespace std;
namespace utils{
#define ALL(x) begin(x), end(x)
#define RALL(x) rbegin(x), rend(x)
///----- aliases
using ll = long long int;
using ull = unsigned long long;
template<class T, class Compare> using p_queue = priority_queue<T, vector<T>, Compare>;
template<class T> using min_queue = p_queue<T, greater<T>>;
template<class T> using max_queue = p_queue<T, less<T>>;
template<class T> inline bool CHMIN(T& X, const T& A){ if(X > A) {X = A; return true;} return false; }
template<class T> inline bool CHMAX(T& X, const T& A){ if(X < A) {X = A; return true;} return false; }
///----- vector I/O
template<class T>
vector<T> VEC(size_t n, T t){
return vector<T>(n, t);
}
template<class ...Ts>
auto VEC(size_t n, Ts ... ts){
return vector<decltype(VEC(ts...))>(n, VEC(ts...));
}
template<class T>
istream& operator>>(istream& is, vector<T>& v){
for (auto &&x : v) { is >> x; } return is;
}
template<class T>
ostream& operator<<(ostream& os, const vector<T>& v){
auto p = v.begin();
assert(p != v.end());
os << *p++;
while(p != v.end()){
os << ' ' << *p++;
}
return os ;
}
template<class T>
ostream& operator<<(ostream& os, const vector<vector<T>>& v){
auto p = v.begin();
assert(p != v.end());
os << *p++;
while(p != v.end()){
os << '\n' << *p++;
}
return os;
}
///----- tuple I/O
template <class S, class T>
istream& operator>>(istream& is, tuple<S, T>& t){
return is >> get<0>(t) >> get<1>(t);
}
template <class S, class T>
istream& operator>>(istream& is, pair<S, T>& t){
return is >> get<0>(t) >> get<1>(t);
}
template <class S, class T, class U>
istream& operator>>(istream& is, tuple<S, T, U>& t){
return is >> get<0>(t) >> get<1>(t) >> get<2>(t);
}
template <class S, class T>
ostream& operator<<(ostream& os, const tuple<S, T>& t){
return os << get<0>(t) << ' ' << get<1>(t);
}
template <class S, class T>
ostream& operator<<(ostream& os, const pair<S, T>& t){
return os << get<0>(t) << ' ' << get<1>(t);
}
template <class S, class T, class U>
ostream& operator<<(ostream& os, const tuple<S, T, U>& t){
return os << get<0>(t) << ' ' << get<1>(t) << ' ' << get<2>(t);
}
///----- constants
constexpr ll INFLL = 1'000'000'000'000'000'020ll;
constexpr ll INF = 1'000'000'009;
constexpr double PI = 3.14'159'265'358'979'323'846;
constexpr double EPS = 1e-12;
}
using namespace utils;
class solver{
istream& is;
ostream& os;
public:
solver(istream& I, ostream& O) :is(I), os(O) {}
vector<string> nupc;
void run();
void init(){
string S("NUPC");
for (int i = 0; i < 16; ++i) {
string T;
int b = 1;
for (int k = 0; k < 4; ++k) {
T += S[k];
if(b & i){
T += T;
}
b *= 2;
} // end k
nupc.push_back(T);
} // end i
sort(ALL(nupc));
}
};
void solver::run(){
init();
int k;
is >> k;
os << nupc[k-1] << endl;
}
int main(int argc, char *argv[]) {
cin.tie(nullptr);
ios::sync_with_stdio(false);
cout << setprecision(17);
#ifdef XELMH
string test_cases = "test_a.txt";
cerr << test_cases << " -->" << endl;
auto fs = fstream(test_cases, fstream::in);
int loop = 0;
while(fs) {
loop++;
cout << '#' << loop << "#------\n";
solver(fs, cout).run();
}
if(loop <= 1) {
cout << "===" << endl;
while(cin) solver(cin, cout).run();
}
#else
solver(cin, cout).run();
#endif
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0