結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー kotatsugamekotatsugame
提出日時 2023-05-19 21:26:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 80,464 KB
実行使用メモリ 13,804 KB
最終ジャッジ日時 2024-05-10 08:04:10
合計ジャッジ時間 30,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 119 ms
5,376 KB
testcase_03 AC 125 ms
5,376 KB
testcase_04 AC 121 ms
5,376 KB
testcase_05 AC 120 ms
5,376 KB
testcase_06 AC 127 ms
5,376 KB
testcase_07 AC 120 ms
5,376 KB
testcase_08 AC 159 ms
6,912 KB
testcase_09 AC 149 ms
6,528 KB
testcase_10 AC 143 ms
5,760 KB
testcase_11 AC 154 ms
5,888 KB
testcase_12 AC 147 ms
7,168 KB
testcase_13 AC 152 ms
5,376 KB
testcase_14 AC 174 ms
8,064 KB
testcase_15 AC 132 ms
5,376 KB
testcase_16 AC 142 ms
5,376 KB
testcase_17 AC 149 ms
6,400 KB
testcase_18 AC 202 ms
10,404 KB
testcase_19 AC 211 ms
8,188 KB
testcase_20 AC 153 ms
5,708 KB
testcase_21 AC 150 ms
5,508 KB
testcase_22 AC 204 ms
11,364 KB
testcase_23 AC 153 ms
5,648 KB
testcase_24 AC 255 ms
10,880 KB
testcase_25 AC 240 ms
10,880 KB
testcase_26 AC 156 ms
5,832 KB
testcase_27 AC 211 ms
11,668 KB
testcase_28 AC 159 ms
6,464 KB
testcase_29 AC 175 ms
7,024 KB
testcase_30 AC 225 ms
9,936 KB
testcase_31 AC 155 ms
5,564 KB
testcase_32 AC 153 ms
5,516 KB
testcase_33 AC 249 ms
13,212 KB
testcase_34 AC 255 ms
12,820 KB
testcase_35 AC 223 ms
8,832 KB
testcase_36 AC 168 ms
6,296 KB
testcase_37 AC 213 ms
9,868 KB
testcase_38 AC 227 ms
5,376 KB
testcase_39 AC 281 ms
5,376 KB
testcase_40 AC 124 ms
5,376 KB
testcase_41 AC 136 ms
5,376 KB
testcase_42 AC 195 ms
8,576 KB
testcase_43 AC 192 ms
8,576 KB
testcase_44 AC 242 ms
13,804 KB
testcase_45 AC 114 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<vector>
using namespace std;
int N,M;
vector<int>A,B,AB;
int main()
{
	int T;cin>>T;
	for(;T--;)
	{
		A.clear();
		B.clear();
		AB.clear();
		set<int>S;
		int N,M;cin>>N>>M;
		for(int i=0;i<N;i++)
		{
			int a;cin>>a;
			S.insert(a);
		}
		for(int i=0;i<M;i++)
		{
			int b;cin>>b;
			if(S.find(b)!=S.end())
			{
				S.erase(b);
				AB.push_back(b);
			}
			else B.push_back(b);
		}
		for(int a:S)A.push_back(a);
		if(AB.empty())
		{
			if(!A.empty()&&!B.empty())cout<<"No\n";
			else
			{
				cout<<"Yes\n";
				for(int a:A)cout<<"Red "<<a<<"\n";
				for(int b:B)cout<<"Blue "<<b<<"\n";
			}
		}
		else
		{
			cout<<"Yes\n";
			for(int a:A)cout<<"Red "<<a<<"\n";
			cout<<"Red "<<AB.back()<<"\n";
			cout<<"Blue "<<AB.back()<<"\n";
			for(int b:B)cout<<"Blue "<<b<<"\n";
			AB.pop_back();
			for(int i=0;i<AB.size();i++)
			{
				if(i%2==0)
				{
					cout<<"Blue "<<AB[i]<<"\n";
					cout<<"Red "<<AB[i]<<"\n";
				}
				else
				{
					cout<<"Red "<<AB[i]<<"\n";
					cout<<"Blue "<<AB[i]<<"\n";
				}
			}
		}
	}
}
0