結果

問題 No.1650 Moving Coins
ユーザー kotatsugamekotatsugame
提出日時 2021-08-24 18:56:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 79,416 KB
実行使用メモリ 8,040 KB
最終ジャッジ日時 2024-11-15 06:49:27
合計ジャッジ時間 7,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 34 ms
6,816 KB
testcase_04 AC 26 ms
7,512 KB
testcase_05 AC 31 ms
6,816 KB
testcase_06 AC 33 ms
6,816 KB
testcase_07 AC 33 ms
6,820 KB
testcase_08 AC 103 ms
6,820 KB
testcase_09 AC 100 ms
6,824 KB
testcase_10 AC 106 ms
6,820 KB
testcase_11 AC 107 ms
6,816 KB
testcase_12 AC 74 ms
6,820 KB
testcase_13 AC 76 ms
6,820 KB
testcase_14 AC 97 ms
6,820 KB
testcase_15 AC 63 ms
6,820 KB
testcase_16 AC 114 ms
6,896 KB
testcase_17 AC 114 ms
6,952 KB
testcase_18 AC 126 ms
6,984 KB
testcase_19 AC 156 ms
7,096 KB
testcase_20 AC 163 ms
7,220 KB
testcase_21 AC 162 ms
7,224 KB
testcase_22 AC 160 ms
8,040 KB
testcase_23 AC 159 ms
8,040 KB
testcase_24 AC 33 ms
6,820 KB
testcase_25 AC 34 ms
6,820 KB
testcase_26 AC 127 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;
int N,A[2<<17],B[2<<17];
vector<pair<int,bool> >E;
bool vis[2<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	for(int i=0;i<N;i++)cin>>B[i];
	queue<int>P;
	for(int i=0;i<N;i++)
	{
		if(A[i]<=B[i])
		{
			if(i+1==N||A[i+1]>B[i])P.push(i),vis[i]=true;
		}
		else
		{
			if(i==0||A[i-1]<B[i])P.push(i),vis[i]=true;
		}
	}
	while(!P.empty())
	{
		int id=P.front();P.pop();
		for(;A[id]>B[id];A[id]--)E.push_back(make_pair(id+1,false));
		for(;A[id]<B[id];A[id]++)E.push_back(make_pair(id+1,true));
		for(int t=id-1;t<=id+1;t+=2)if(0<=t&&t<N&&!vis[t])
		{
			if(A[t]<=B[t])
			{
				if(t+1==N||A[t+1]>B[t])P.push(t),vis[t]=true;
			}
			else
			{
				if(t==0||A[t-1]<B[t])P.push(t),vis[t]=true;
			}
		}
	}
	cout<<E.size()<<endl;
	for(pair<int,bool>p:E)cout<<p.first<<" "<<(p.second?'R':'L')<<"\n";
}
0