結果

問題 No.1650 Moving Coins
ユーザー publflpublfl
提出日時 2021-08-20 21:58:42
言語 C++14
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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