結果
問題 | No.1026 OGAWA's New Keyboard |
ユーザー | Hitsuji |
提出日時 | 2020-04-14 16:14:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 21 ms / 1,000 ms |
コード長 | 3,462 bytes |
コンパイル時間 | 917 ms |
コンパイル使用メモリ | 99,112 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 04:58:50 |
合計ジャッジ時間 | 1,853 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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 | 21 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 21 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 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 | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 8 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 9 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 16 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
ソースコード
/* @・ω・@ */ /*****/ # include <iostream> # include <vector> # include <algorithm> # include <string> # include <cmath> # include <queue> # include <stack> # include <map> # include <iomanip> //cout << fixed << setprecision(桁数); # include <stdexcept> # include <functional> //#define int long long using namespace std; using ll = long long; using ld = long double; using pll = pair<long long, long long>; template<class T> using vec = vector<T>; #define debug(x) (std::cerr << x) #define debugln(x) (std::cerr << x << "\n") #define debug_tab(n, x) (std::cerr << strMulti("\t",n) << (x) << "\n") #define debug_cout(x) (std::cerr << #x << " : " << (x) << "\n") #define debug_coutvec(x) std::cerr << #x << " : "; _debug_coutvec(x) #define debug_tabcout(n, x) (std::cerr << strMulti("\t",n) << #x << " : " << (x) << "\n") #define debug_headcout(h, x) (std::cerr << h << " : " << (x) << "\n") #define debug_tabheadcout(n, h, x) (std::cerr << strMulti("\t",n) << h << " : " << (x) << "\n") #define rep(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i) #define rep1(i, n) for(int i=1, i##_len=(n); i<=i##_len; ++i) #define rrep(i, n) for(int i=(n)-1; i >= 0; --i) #define rrep1(i, n) for(int i=(n); i > 0; --i) #define step(i, a, n) for(int i=(a), i##_len=(a)+(n); i<i##_len; ++i) #define rstep(i, a, n) for(int i=(a)+(n)-1, i##_len=(a); i>=i##_len; --i) #define range(i, a, b) for(int i=(a), i##_len=(b); i<i##_len; ++i) #define rrange(i, a, b) for(int i=(b)-1, i##_len=(a); i>=i##_len; --i) #define all(x) (x).begin(), (x).end() #define pair(a, b) make_pair(a, b) std::string strMulti(std::string t, int n) { std::string out = ""; for (int i = 0; i < n; i++) { out += t; } return out; } template<class T> void _debug_coutvec(vector<T> ar, string space = " ") { rep(i, ar.size()) { debug(ar[i] << space); } debugln(""); } constexpr int INF = 2000000000; // 2*10^9 constexpr ll INFL = 1ll << 60ll; template<class T> bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> T divup(T a, T b) { if (a % b == 0) { return a / b; } return a / b + 1; } template<class T> bool cmp_2nd(pair<T, T> a, pair<T, T> b) { if (a.second != b.second) { return a.second < b.second; } return a.first < b.first; } template<class T> T mod_pow(T x, T n, const T& p) { T ret = 1; while (n > 0) { if (n & 1) { (ret *= x) %= p; } (x *= x) %= p; n >>= 1; } return ret; } template<class T> T math_P(T m, T n) { T ret = 1; for (T i = m; i > m - n; i--) { ret *= i; } return ret; } template<class T> T math_C(T m, T n) { T ret = math_P(m, n); for (T i = 2; i <= n; i++) { ret /= i; } return ret; } template<class T> T math_gcd(T a, T b) { if (b == 0) { return a; } else { return math_gcd(b, a % b); } } constexpr ll MOD = 1000000007; // 10^9+7 /*****/ void Main() { int N; cin >> N; vec<pair<int, char>> S(N); rep(i, N) { int t; cin >> t; S[i].first = i * (t == 0 ? 1 : -1); cin >> S[i].second; } /** debug("S : "); rep(i, N) { debug("{" << S[i].first << "," << S[i].second << "}"); } /**/ sort(all(S)); rep(i, N) { cout << S[i].second; } } /*****/ int main() { std::ios::sync_with_stdio(false); std::cin.tie(0); //std::cout << std::fixed << std::setprecision(10); /** while (true) { Main(); std::cerr << flush; cout << endl; } /*/ Main(); std::cerr << flush; cout << endl; /**/ return 0; }