結果

問題 No.11 カードマッチ
ユーザー jp_stejp_ste
提出日時 2016-03-02 12:52:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 2,167 bytes
コンパイル時間 2,539 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-10-11 20:02:10
合計ジャッジ時間 7,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,128 KB
testcase_01 AC 133 ms
41,084 KB
testcase_02 AC 137 ms
41,336 KB
testcase_03 AC 133 ms
41,016 KB
testcase_04 AC 190 ms
47,816 KB
testcase_05 AC 121 ms
40,004 KB
testcase_06 AC 358 ms
54,952 KB
testcase_07 AC 275 ms
47,560 KB
testcase_08 AC 289 ms
49,920 KB
testcase_09 AC 362 ms
54,768 KB
testcase_10 AC 284 ms
56,096 KB
testcase_11 AC 297 ms
52,176 KB
testcase_12 AC 304 ms
55,740 KB
testcase_13 AC 307 ms
55,448 KB
testcase_14 AC 211 ms
46,460 KB
testcase_15 AC 155 ms
41,408 KB
testcase_16 AC 182 ms
42,288 KB
testcase_17 AC 178 ms
42,260 KB
testcase_18 AC 178 ms
41,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int W = scan.nextInt();
            int H = scan.nextInt();
            int N = scan.nextInt();
            
            ArrayList<Card> cardList = new ArrayList<>();            
            for(int i=0; i<N; i++) {
                int mark = scan.nextInt();
                int number = scan.nextInt();
                cardList.add(new Card(mark, number));
            }
            
            int numOfEachMark[] = new int[W+1];
            int numOfEachNumber[] = new int[H+1];
            boolean useMarks[] = new boolean[W+1];
            boolean useNumbers[] = new boolean[H+1];
            
            for(Card c : cardList) {
                numOfEachMark[c.mark]++;
                numOfEachNumber[c.number]++;
                useMarks[c.mark] = true;
                useNumbers[c.number] = true;
            }
            
            int ans = 0;
            for(int i=0; i<useMarks.length; i++) {
                if(useMarks[i]) {
                    ans += (H - numOfEachMark[i]);
                }
            }
            
            int numOfFoundNumber[] = new int[H+1];
            boolean flag[] = new boolean[W+1];
            for(Card c : cardList) {
                if(flag[c.mark]) {
                     numOfFoundNumber[c.number]--;
                } else {
                    flag[c.mark] = true;
                    for(int j=1; j<numOfFoundNumber.length; j++) {
                        if(j != c.number) { 
                            numOfFoundNumber[j]++;
                        }
                    }
                }
            }
            
            for(int i=0; i<useNumbers.length; i++) {
                if(useNumbers[i]) {
                    ans += (W - numOfEachNumber[i] - numOfFoundNumber[i]);
                }
            }
            
            System.out.println(ans);
        }
    }
}

class Card {
    int mark, number;
    Card(int mark, int number) {
        this.mark = mark;
        this.number = number;
    }
}
0