結果

問題 No.267 トランプソート
ユーザー dnishdnish
提出日時 2017-07-06 00:28:53
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 704 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 182,716 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-15 18:25:35
合計ジャッジ時間 3,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n,N) for(int i=(n);i<(int) N;i++)
using namespace std;

int main(){
	int n;
	cin>>n;
	vector<pair<string,string>> vt;
	REP(i,0,n){
		string s; cin >> s;
		string t = "";
		if(s[0] == 'D') t += 'A';
		else if(s[0] == 'C') t += 'B';
		else if(s[0] == 'H') t += 'C';
		else if(s[0] == 'S') t += 'D';

		if('2' <= s[1] && s[1] <= '9') t += 'A' + (s[1] - '1');
		else if(s[1] == 'A') t += 'A';
		else if(s[1] == 'T') t += 'M';
		else if(s[1] == 'J') t += 'N';
		else if(s[1] == 'Q') t += 'O';
		else if(s[1] == 'K') t += 'P';
		vt.push_back({t, s});
	}
	sort(vt.begin(),vt.end());
	cout<<vt[0].second;
	REP(i,1,n){
		cout<<" "<<vt[i].second;
	}
	cout<<endl;
	return 0;
}
0