結果

問題 No.1650 Moving Coins
ユーザー kotatsugamekotatsugame
提出日時 2021-08-24 18:56:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 79,148 KB
実行使用メモリ 8,172 KB
最終ジャッジ日時 2024-04-27 06:58:10
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 34 ms
6,948 KB
testcase_04 AC 26 ms
6,940 KB
testcase_05 AC 32 ms
6,944 KB
testcase_06 AC 34 ms
6,940 KB
testcase_07 AC 42 ms
7,632 KB
testcase_08 AC 102 ms
6,940 KB
testcase_09 AC 98 ms
6,940 KB
testcase_10 AC 104 ms
6,940 KB
testcase_11 AC 105 ms
6,944 KB
testcase_12 AC 74 ms
6,940 KB
testcase_13 AC 75 ms
6,948 KB
testcase_14 AC 97 ms
6,944 KB
testcase_15 AC 63 ms
6,944 KB
testcase_16 AC 112 ms
6,944 KB
testcase_17 AC 114 ms
6,944 KB
testcase_18 AC 126 ms
7,112 KB
testcase_19 AC 153 ms
7,092 KB
testcase_20 AC 162 ms
7,220 KB
testcase_21 AC 161 ms
7,532 KB
testcase_22 AC 160 ms
8,172 KB
testcase_23 AC 159 ms
8,168 KB
testcase_24 AC 34 ms
6,944 KB
testcase_25 AC 33 ms
6,944 KB
testcase_26 AC 126 ms
6,944 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