結果

問題 No.1650 Moving Coins
ユーザー merlinmerlin
提出日時 2021-08-20 22:01:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 1,396 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 85,900 KB
実行使用メモリ 74,292 KB
最終ジャッジ日時 2024-10-14 03:40:24
合計ジャッジ時間 20,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
40,432 KB
testcase_01 AC 68 ms
38,120 KB
testcase_02 AC 84 ms
40,476 KB
testcase_03 AC 293 ms
46,668 KB
testcase_04 AC 256 ms
46,040 KB
testcase_05 AC 287 ms
45,844 KB
testcase_06 AC 293 ms
45,892 KB
testcase_07 AC 306 ms
46,048 KB
testcase_08 AC 642 ms
60,880 KB
testcase_09 AC 743 ms
58,020 KB
testcase_10 AC 668 ms
59,872 KB
testcase_11 AC 678 ms
58,708 KB
testcase_12 AC 483 ms
53,108 KB
testcase_13 AC 478 ms
55,172 KB
testcase_14 AC 652 ms
61,544 KB
testcase_15 AC 435 ms
53,080 KB
testcase_16 AC 673 ms
58,484 KB
testcase_17 AC 651 ms
58,124 KB
testcase_18 AC 699 ms
57,996 KB
testcase_19 AC 926 ms
73,744 KB
testcase_20 AC 772 ms
69,588 KB
testcase_21 AC 951 ms
74,292 KB
testcase_22 AC 814 ms
71,156 KB
testcase_23 AC 826 ms
67,672 KB
testcase_24 AC 274 ms
45,936 KB
testcase_25 AC 291 ms
45,944 KB
testcase_26 AC 577 ms
64,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        PrintWriter pw=new PrintWriter(System.out);
        int n=Integer.parseInt(bu.readLine());
        String s[]=bu.readLine().split(" ");
        int a[]=new int[n],b[]=new int[n],i;
        for(i=0;i<n;i++) a[i]=Integer.parseInt(s[i]);
        s=bu.readLine().split(" ");
        for(i=0;i<n;i++) b[i]=Integer.parseInt(s[i]);

        ArrayList<Integer> fin=new ArrayList<>();
        Deque<Integer> q=new LinkedList<>();
        int ans=0;
        for(i=0;i<n;i++) ans+=Math.abs(b[i]-a[i]);

        for(i=0;i<n;i++)
        {
            int j=i+1;
            q.add(i);
            while(j<n && ((a[i]<b[i] && a[j]<b[j] && a[j]<=b[j-1]) || (a[i]>b[i] && a[j]>b[j] && b[j]<=a[j-1])))
            q.addLast(j++);

            if(a[i]<=b[i])
            while(!q.isEmpty()) fin.add(q.removeLast());
            else while(!q.isEmpty()) fin.add(q.removeFirst());
            i=j-1;
        }

        pw.append(ans+"\n");
        for(int x:fin)
        {
            int l=a[x],r=b[x]; char c='R';
            if(l>r)
            {
                l=b[x]; r=a[x];
                c='L';
            }

            while(l++<r) pw.append((x+1)+" "+c+"\n");
        }
        pw.close();
    }
}
0