結果

問題 No.606 カラフルタイル
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-12-06 00:05:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 2,342 bytes
コンパイル時間 6,402 ms
コンパイル使用メモリ 77,304 KB
実行使用メモリ 49,132 KB
最終ジャッジ日時 2024-11-28 18:12:37
合計ジャッジ時間 9,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,292 KB
testcase_01 AC 56 ms
37,108 KB
testcase_02 AC 55 ms
37,220 KB
testcase_03 AC 56 ms
37,240 KB
testcase_04 AC 55 ms
36,636 KB
testcase_05 AC 55 ms
37,248 KB
testcase_06 AC 57 ms
37,172 KB
testcase_07 AC 56 ms
37,112 KB
testcase_08 AC 56 ms
37,172 KB
testcase_09 AC 58 ms
37,024 KB
testcase_10 AC 56 ms
37,024 KB
testcase_11 AC 56 ms
37,144 KB
testcase_12 AC 57 ms
37,156 KB
testcase_13 AC 137 ms
42,848 KB
testcase_14 AC 56 ms
37,292 KB
testcase_15 AC 80 ms
38,592 KB
testcase_16 AC 277 ms
47,428 KB
testcase_17 AC 389 ms
48,748 KB
testcase_18 AC 289 ms
47,680 KB
testcase_19 AC 270 ms
48,064 KB
testcase_20 AC 404 ms
48,888 KB
testcase_21 AC 270 ms
46,768 KB
testcase_22 AC 277 ms
48,184 KB
testcase_23 AC 316 ms
47,908 KB
testcase_24 AC 365 ms
48,640 KB
testcase_25 AC 387 ms
49,132 KB
testcase_26 AC 405 ms
48,896 KB
testcase_27 AC 390 ms
48,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Main {
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int k=sc.nextInt();
        int q=sc.nextInt();
        char[]a=new char[q];
        int[]b=new int[q],c=new int[q];
        long[]ans=new long[k];
        boolean[]row=new boolean[n],col=new boolean[n];
        int nr=n,nc=n;
        for(int i=0;i<q;++i){
            a[i]=sc.next().charAt(0);
            b[i]=sc.nextInt()-1;
            c[i]=sc.nextInt()-1;
        }
        for(int i=q-1;i>=0;--i){
            if(a[i]=='R'){
                if(row[b[i]])continue;
                ans[c[i]]+=nc;
                nr--;
                row[b[i]]=true;
            }else{
                if(col[b[i]])continue;
                ans[c[i]]+=nr;
                nc--;
                col[b[i]]=true;
            }
        }
        ans[0]=(long)n*(long)n;
        for(int i=1;i<k;++i)ans[0]-=ans[i];
        for(long aa:ans)out.println(aa);
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
    }
}
0