結果

問題 No.267 トランプソート
ユーザー cympfhcympfh
提出日時 2015-08-22 17:33:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 2,771 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 152,348 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-25 16:13:08
合計ジャッジ時間 2,873 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,388 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<(n);++i)
#define loop for(;;)
#define trace(var) cerr<<">>> "<<#var<<" = "<<var<<endl;
#define inf (1e9)
#define eps (1e-9)
using Integer = long long;
using Real = long double;
const Real PI = acosl(-1);

template<class S, class T> inline
ostream& operator<<(ostream&os, pair<S,T> p) {
  return os << '(' << p.first << ", " << p.second << ')';
}

template<class S, class T, class U> inline
ostream& operator<<(ostream&os, tuple<S,T,U> t) {
  return os << '('
    << get<0>(t) << ", "
    << get<1>(t) << ", "
    << get<2>(t) << ')';
}

template<class T> inline
ostream& operator<<(ostream&os, set<T> v) {
  os << "(set";
  for (T item: v) os << ' ' << item;
  os << ")";
  return os;
}

template<class T> inline
ostream& operator<<(ostream&os, vector<T> v) {
  if (v.size() == 0) { return os << "(empty)"; }
  os << v[0];
  for (int i=1, len=v.size(); i<len; ++i) os << ' ' << v[i];
  return os;
}

template<class T> inline
istream& operator>>(istream&is, vector<T>&v) {
  rep (i, v.size()) is >> v[i];
  return is;
}

enum Suit { D, C, H, S };
struct Card {
  Suit s;
  int n;
  Card() {};
  Card(Suit _s, int _n) : s(_s), n(_n) {};
};

ostream& operator<<(ostream&os, Suit&s) {
  if (s == D) os << 'D';
  else if (s == H) os << 'H';
  else if (s == C) os << 'C';
  else if (s == S) os << 'S';
  else cerr << "Suit show Error" << endl;
  return os;
}

ostream& operator<<(ostream&os, Card&c) {
  os << c.s;
  if (c.n == 1) os << 'A';
  else if (c.n == 10) os << 'T';
  else if (c.n == 11) os << 'J';
  else if (c.n == 12) os << 'Q';
  else if (c.n == 13) os << 'K';
  else os << c.n;
  return os;
}

istream& operator>>(istream&is, Suit&s) {
  char c; is >> c;
  if (c == 'D') s = D;
  else if (c == 'H') s = H;
  else if (c == 'C') s = C;
  else if (c == 'S') s = S;
  else cerr << "Suit read Error" << endl;
  return is;
}

istream& operator>>(istream&is, Card&c) {
  Suit s; is >> s;
  char n; is >> n;
  c.s = s;
  if (n == 'A') c.n = 1;
  else if (n == 'T') c.n = 10;
  else if (n == 'J') c.n = 11;
  else if (n == 'Q') c.n = 12;
  else if (n == 'K') c.n = 13;
  else c.n = n - '0';
  return is;
}

bool operator<(const Card& lh, const Card& rh) {
  if (lh.s != rh.s) return lh.s < rh.s;
  return lh.n < rh.n;
}

//           ^   >  v   <
int dx[] = { -1, 0, 1,  0 };
int dy[] = {  0, 1, 0, -1 };

using vi = vector<int>;
using vvi = vector<vi>;
using vd = vector<double>;
using vvd = vector<vd>;
using vb = vector<bool>;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(0);
  cout.setf(ios::fixed);
  cout.precision(10);
  random_device dev;
  mt19937 rand(dev());

  int n; cin >> n;
  vector<Card> cs(n); cin >> cs;
  sort(begin(cs), end(cs));
  cout << cs << endl;

  return 0;
}
0