結果

問題 No.1650 Moving Coins
ユーザー publflpublfl
提出日時 2021-08-20 21:58:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 49,920 KB
実行使用メモリ 6,624 KB
最終ジャッジ日時 2024-10-14 03:34:28
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 27 ms
5,248 KB
testcase_04 AC 20 ms
5,248 KB
testcase_05 AC 25 ms
5,248 KB
testcase_06 AC 27 ms
5,248 KB
testcase_07 AC 28 ms
5,248 KB
testcase_08 AC 51 ms
5,824 KB
testcase_09 AC 50 ms
5,864 KB
testcase_10 AC 52 ms
5,800 KB
testcase_11 AC 52 ms
5,812 KB
testcase_12 AC 43 ms
5,412 KB
testcase_13 AC 42 ms
5,436 KB
testcase_14 AC 50 ms
5,832 KB
testcase_15 AC 37 ms
5,444 KB
testcase_16 AC 54 ms
5,960 KB
testcase_17 AC 54 ms
5,916 KB
testcase_18 AC 58 ms
6,052 KB
testcase_19 AC 72 ms
6,492 KB
testcase_20 AC 72 ms
6,624 KB
testcase_21 AC 71 ms
6,496 KB
testcase_22 AC 71 ms
6,620 KB
testcase_23 AC 72 ms
6,496 KB
testcase_24 AC 27 ms
5,248 KB
testcase_25 AC 27 ms
5,248 KB
testcase_26 AC 46 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>

std::vector< std::pair<int,char> > ans;
int x[200010],y[200010];

int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	for(int i=1;i<=a;i++) scanf("%d",&y[i]);
	
	for(int i=1;i<=a;i++)
	{
		if(y[i]<x[i])
		{
			int t = x[i]-y[i];
			while(t--) ans.push_back(std::make_pair(i,'L'));
		}
	}
	for(int i=a;i>=1;i--)
	{
		if(y[i]>x[i])
		{
			int t = y[i]-x[i];
			while(t--) ans.push_back(std::make_pair(i,'R'));
		}
	}
	
	printf("%d\n",ans.size());
	for(int i=0;i<ans.size();i++) printf("%d %c\n",ans[i].first,ans[i].second);
}
0