結果

問題 No.274 The Wall
ユーザー KilisameKilisame
提出日時 2016-06-13 16:55:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 2,178 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 80,412 KB
実行使用メモリ 57,276 KB
最終ジャッジ日時 2024-06-22 02:10:44
合計ジャッジ時間 7,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,148 KB
testcase_01 AC 128 ms
54,260 KB
testcase_02 AC 124 ms
53,980 KB
testcase_03 AC 179 ms
55,164 KB
testcase_04 AC 131 ms
54,640 KB
testcase_05 AC 126 ms
54,116 KB
testcase_06 AC 131 ms
54,252 KB
testcase_07 AC 121 ms
54,076 KB
testcase_08 AC 124 ms
54,136 KB
testcase_09 AC 128 ms
54,372 KB
testcase_10 AC 105 ms
52,716 KB
testcase_11 AC 190 ms
56,828 KB
testcase_12 AC 179 ms
56,500 KB
testcase_13 AC 142 ms
54,008 KB
testcase_14 AC 174 ms
54,652 KB
testcase_15 AC 175 ms
54,580 KB
testcase_16 AC 190 ms
57,276 KB
testcase_17 AC 200 ms
56,916 KB
testcase_18 AC 199 ms
56,860 KB
testcase_19 AC 183 ms
56,568 KB
testcase_20 AC 183 ms
56,564 KB
testcase_21 AC 186 ms
56,732 KB
testcase_22 AC 193 ms
56,880 KB
testcase_23 AC 198 ms
57,244 KB
testcase_24 AC 187 ms
57,144 KB
testcase_25 AC 186 ms
56,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.Scanner;

public class Main {

    private static final String YES = "YES";

    private static final String NO = "NO";

    private static int n;

    private static int m;

    private static int[] blocksCount;

    private static List<int[]> blocks;

    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        n = Integer.parseInt(cin.next());
        m = Integer.parseInt(cin.next());
        blocksCount = new int[(m + 1) / 2];
        blocks = new ArrayList<int[]>(n);
        for (int i = 0; i < n; i++) {
            int[] block = new int[2];
            int begin = Integer.parseInt(cin.next());
            int end = Integer.parseInt(cin.next());
            block[0] = end - begin + 1;
            /* 180度回転したほうが開始位置が左にくるようであればその向きにしてからリストに詰める */
            block[1] = Math.min(begin, m - end - 1);
            blocks.add(block);
        }
        cin.close();
        /* リストをソートする。1.ブロック数の多いもの 2. */
        Collections.sort(blocks, new Comparator<int[]>() {
            @Override
            public int compare(int[] o1, int[] o2) {
                return o2[0] == o1[0] ? o1[1] - o2[1] : o2[0] - o1[0];
            }
        });
        execute2();
    }

    private static void execute2() {
        for (int[] block : blocks) {
            for (int i = 0; i < block[0]; i++) {
                int index = block[1] + i;
                if (index >= m / 2) {
                    index = m - index - 1;
                }
                if (blocksCount[index] == 2) {
                    System.out.println(NO);
                    System.exit(0);
                } else if (index == m / 2 && blocksCount[index] == 1) {
                    System.out.println(NO);
                    System.exit(0);
                }
                blocksCount[index]++;
            }
        }
        System.out.println(YES);
    }
}
0