結果

問題 No.1457 ツブ消ししとるなHard
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-04-06 10:59:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 7,507 bytes
コンパイル時間 2,679 ms
コンパイル使用メモリ 79,244 KB
実行使用メモリ 59,748 KB
最終ジャッジ日時 2023-08-30 22:20:25
合計ジャッジ時間 8,422 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,312 KB
testcase_01 AC 43 ms
49,116 KB
testcase_02 AC 43 ms
49,296 KB
testcase_03 AC 45 ms
49,276 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 43 ms
49,280 KB
testcase_08 AC 42 ms
49,292 KB
testcase_09 AC 85 ms
51,740 KB
testcase_10 AC 86 ms
51,464 KB
testcase_11 AC 48 ms
49,596 KB
testcase_12 AC 44 ms
49,248 KB
testcase_13 AC 468 ms
57,820 KB
testcase_14 AC 309 ms
55,284 KB
testcase_15 AC 807 ms
58,004 KB
testcase_16 AC 50 ms
49,392 KB
testcase_17 AC 44 ms
49,124 KB
testcase_18 AC 46 ms
49,252 KB
testcase_19 WA -
testcase_20 AC 44 ms
49,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package _1457;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.io.UncheckedIOException;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Objects;

public class Main {
    public void exec() {
        int n = stdin.nextInt();
        int m = stdin.nextInt();
        int x = stdin.nextInt();
        int y = stdin.nextInt();
        int z = stdin.nextInt();
        long[] a = stdin.nextLongArray(n);
        
        long sum = 0;
        long count = 0;
        List<Long> b = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            if (a[i] >= x) {
                sum += a[i];
                count++;
            }
            if (y < a[i] && a[i] < x) b.add(a[i]);
        }
        
        if (m < count) {
            stdout.println("Handicapped");
            return;
        }
        
        long ans = 0;
        for (int p = 0; p <= m-count; p++) {
            for (List<Long> comb : new Combinations<>(b, p)) {
                long numer = sum;
                for (long v : comb) numer += v;
                long denom = count + p;
                if (denom > 0 && numer%denom==0 && numer/denom==z) {
                    ans++;
                }
            }
        }
        stdout.println(ans);
    }

    private static final Stdin stdin = new Stdin(System.in);
    private static final Stdout stdout = new Stdout(System.out);
    private static final Stderr stderr = new Stderr(System.err, false);

    public static void main(String[] args) {
        try {
            new Main().exec();
        } finally {
            stdout.flush();
        }
    }
    
    public class Combinations<T> implements Iterable<List<T>>{
        private List<T> src;
        private int n;

        public Combinations(List<T> src, int n) {
            this.src = src;
            this.n = n;
        }

        @Override
        public Iterator<List<T>> iterator() {
            return new CombinationsIterator<>(src, n);
        }

        private class CombinationsIterator<S> implements Iterator<List<S>> {
            private List<S> src;
            private int m;

            private int len;
            private int bit;
            private List<S> ptr;

            public CombinationsIterator(List<S> src, int m) {
                this.src = src;
                this.len = src.size();
                this.m = m;
                this.bit = 0;
            }

            @Override
            public boolean hasNext() {
                while (bit < (1<<len)) {
                    if (m<=0 || Integer.bitCount(bit)==m) {
                        this.ptr = new ArrayList<>();
                        for (int i = 0; i < len; i++) {
                            if ((bit&(1<<i))!=0) ptr.add(src.get(i));
                        }
                        bit++;
                        return true;
                    } else {
                        bit++;
                    }
                }
                return false;
            }

            @Override
            public List<S> next() {
                return this.ptr;
            }
        }
    }

    // ASCII ONLY
    public static class Stdin {
        private InputStream in;
        private byte[] buf;
        private int ptr;
        private int len;

        public Stdin(InputStream in) {
            this.in = in;
            this.buf = new byte[1024];
            this.ptr = 0;
            this.len = 0;
        }

        public String nextString() {
            StringBuilder sb = new StringBuilder();
            byte b;
            while ((b = read()) != -1) {
                sb.appendCodePoint(b);
            }
            return sb.toString();
        }

        public int nextInt() {
            return (int)nextLong();
        }

        public double nextDouble() {
            return Double.parseDouble(nextString());
        }

        public long nextLong() {
            boolean negative = false;
            int x = 0;

            byte b = read();
            if (b == '-') {
                negative = true;
            } else {
                x += b-'0';
            }

            while ((b=read()) != -1) {
                x *= 10;
                x += b-'0';
            }

            return negative ? -x : x;
        }

        private byte read() {
            byte b = readByte();
            if (b == '\r') {
                readByte(); // LFを読み飛ばす
                return -1;
            } else if (b == '\n' || b == ' ') {
                return -1;
            } else {
                return b;
            }
        }

        private byte readByte(){
            if (len == ptr) {
                try {
                    ptr = 0;
                    len = in.read(buf);
                    if (len == -1) return -1;
                } catch (IOException e) {
                    throw new UncheckedIOException(e);
                }
            }
            return buf[ptr++];
        }

        public String[] nextStringArray(int n) {
            String[] a = new String[n];
            for (int i = 0; i < n; i++) a[i] = nextString();
            return a;
        }

        public int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++) a[i] = nextInt();
            return a;
        }

        public double[] nextDoubleArray(int n) {
            double[] a = new double[n];
            for (int i = 0; i < n; i++) a[i] = nextDouble();
            return a;
        }

        public long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++) a[i] = nextLong();
            return a;
        }
    }

    public static class Stdout {
        private PrintWriter stdout;

        public Stdout(PrintStream stdout) {
            this.stdout =  new PrintWriter(stdout, false);
        }

        public void println(Object ... objs) {
            for (int i = 0, len = objs.length; i < len; i++) {
                stdout.print(objs[i]);
                if (i != len-1) stdout.print(' ');
            }
            stdout.println();
        }

        public void flush() {
            stdout.flush();
        }
    }

    public static class Stderr {
        private PrintWriter stderr;
        private boolean debug;

        public Stderr(PrintStream stderr, boolean debug) {
            this.stderr =  new PrintWriter(stderr, false);
            this.debug = debug;
        }

        public void println(Object ... objs) {
            if (!debug) return ;

            stderr.print("DEBUG: ");
            for (int i = 0, len = objs.length; i < len; i++) {
                stderr.print(deepToString(objs[i]));
                if (i != len-1) stderr.print(' ');
            }
            stderr.println();
            stderr.flush();
        }

        private String deepToString(Object o) {
            if (o == null) {
                return "null";
            }

            // 配列の場合
            if (o.getClass().isArray()) {
                int len = Array.getLength(o);
                String[] tokens = new String[len];
                for (int i = 0; i < len; i++) {
                    tokens[i] = deepToString(Array.get(o, i));
                }
                return "{" + String.join(", ", tokens) + "}";
            }

            return Objects.toString(o);
        }
    }
}
0