結果

問題 No.910 素数部分列
ユーザー kitakitalilykitakitalily
提出日時 2019-10-18 23:23:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 322 ms / 1,000 ms
コード長 5,057 bytes
コンパイル時間 4,525 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 61,588 KB
最終ジャッジ日時 2023-09-08 04:40:01
合計ジャッジ時間 14,467 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,360 KB
testcase_01 AC 44 ms
49,252 KB
testcase_02 AC 45 ms
49,676 KB
testcase_03 AC 44 ms
49,232 KB
testcase_04 AC 44 ms
49,212 KB
testcase_05 AC 44 ms
49,684 KB
testcase_06 AC 43 ms
49,468 KB
testcase_07 AC 44 ms
49,196 KB
testcase_08 AC 44 ms
47,112 KB
testcase_09 AC 44 ms
49,264 KB
testcase_10 AC 43 ms
49,356 KB
testcase_11 AC 45 ms
49,176 KB
testcase_12 AC 44 ms
47,692 KB
testcase_13 AC 46 ms
49,272 KB
testcase_14 AC 45 ms
47,308 KB
testcase_15 AC 44 ms
49,228 KB
testcase_16 AC 44 ms
49,208 KB
testcase_17 AC 45 ms
49,184 KB
testcase_18 AC 44 ms
49,240 KB
testcase_19 AC 44 ms
49,212 KB
testcase_20 AC 45 ms
49,324 KB
testcase_21 AC 45 ms
49,412 KB
testcase_22 AC 43 ms
49,304 KB
testcase_23 AC 201 ms
55,404 KB
testcase_24 AC 191 ms
55,272 KB
testcase_25 AC 186 ms
54,812 KB
testcase_26 AC 191 ms
55,256 KB
testcase_27 AC 188 ms
55,056 KB
testcase_28 AC 168 ms
55,028 KB
testcase_29 AC 270 ms
56,780 KB
testcase_30 AC 284 ms
56,872 KB
testcase_31 AC 242 ms
56,780 KB
testcase_32 AC 250 ms
56,788 KB
testcase_33 AC 315 ms
61,588 KB
testcase_34 AC 270 ms
57,216 KB
testcase_35 AC 293 ms
57,064 KB
testcase_36 AC 290 ms
57,560 KB
testcase_37 AC 270 ms
56,964 KB
testcase_38 AC 292 ms
57,108 KB
testcase_39 AC 296 ms
56,976 KB
testcase_40 AC 266 ms
56,884 KB
testcase_41 AC 265 ms
56,828 KB
testcase_42 AC 280 ms
57,232 KB
testcase_43 AC 322 ms
57,236 KB
testcase_44 AC 268 ms
56,828 KB
testcase_45 AC 272 ms
56,884 KB
testcase_46 AC 296 ms
56,532 KB
testcase_47 AC 315 ms
57,188 KB
testcase_48 AC 142 ms
57,276 KB
testcase_49 AC 132 ms
58,932 KB
testcase_50 AC 143 ms
57,180 KB
testcase_51 AC 103 ms
52,576 KB
testcase_52 AC 297 ms
60,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	static long mod = 998244353;
	static int INF = 1000000000;
 	public static void main(String[] args){
		FastScanner scanner = new FastScanner();
		int n = scanner.nextInt();
		String s = scanner.next();
		int ans = 0;
		for(int i = 0; i < n; i++){
			if(s.charAt(i) == '3' ||s.charAt(i) == '5' || s.charAt(i) == '7'){
				ans++;
			}
		}
		PriorityQueue<Integer> one = new PriorityQueue<Integer>();
		PriorityQueue<Integer> nine = new PriorityQueue<Integer>();
		for(int i = 0; i < n; i++){
			if(s.charAt(i) == '1'){
				one.add(i);
			}else if(s.charAt(i) == '9'){
				nine.add(i);
			}
		}
		int remn = 0;
		while(!one.isEmpty() && !nine.isEmpty()){
			int onetop = one.peek();
			int ninetop = nine.peek();
			if(ninetop < onetop){
				nine.poll();
				remn++;
			}else if(onetop < ninetop){
				one.poll();
				nine.poll();
				ans++;
			}
		}
		int a = one.size();
		int b = remn;
		while(a >= 1 && b >= 2){
			a -= 1;
			b -= 2;
			ans++;
		}
		ans += a/2;
		System.out.println(ans);
	}
	static class BIT{
		int n;
		int[] bit;
		public BIT(int n){
			this.n = n;
			bit = new int[n+1];
		}
		void add(int idx, int val){
			for(int i = idx+1; i <= n; i += i&(-i)) bit[i-1] += val;
		}
		int sum(int idx){
			int res = 0;
			for(int i = idx+1; i > 0; i -= i&(-i)) res += bit[i-1];
			return res;
		}
		int sum(int begin, int end){
			if(begin == 0) return sum(end);
			return sum(end)-sum(begin-1);
		}
	}
	static class Pair implements Comparable<Pair>{
    int first, second;
    Pair(int a, int b){
        first = a;
        second = b;
    }
    @Override
    public boolean equals(Object o){
        if (this == o) return true;
        if (!(o instanceof Pair)) return false;
        Pair p = (Pair) o;
        return first == p.first && second == p.second;
    }
    @Override
    public int compareTo(Pair p){
        //return first == p.first ? second - p.second : first - p.first; //firstで昇順にソート
        //return (first == p.first ? second - p.second : first - p.first) * -1; //firstで降順にソート
        //return second == p.second ? first - p.first : second - p.second;//secondで昇順にソート
        //return (second == p.second ? first - p.first : second - p.second)*-1;//secondで降順にソート
		    //return first * 1.0 / second > p.first * 1.0 / p.second ? 1 : -1; // first/secondの昇順にソート
		    //return first * 1.0 / second < p.first * 1.0 / p.second ? 1 : -1; // first/secondの降順にソート
				//return second * 1.0 / first > p.second * 1.0 / p.first ? 1 : -1; // second/firstの昇順にソート
		    //return second * 1.0 / first < p.second * 1.0 / p.first ? 1 : -1; // second/firstの降順にソート
				//return Math.atan2(second, first) > Math.atan2(p.second, p.first) ? 1 : -1; // second/firstの昇順にソート
				//return first + second > p.first + p.second ? 1 : -1; //first+secondの昇順にソート
				//return first + second < p.first + p.second ? 1 : -1; //first+secondの降順にソート
				//return first - second < p.first - p.second ? 1 : -1; //first-secondの降順にソート
				return Math.atan2(second,first) > Math.atan2(p.second, p.first) ? 1 : -1;
		}
  }

	private static class FastScanner {
		private final InputStream in = System.in;
		private final byte[] buffer = new byte[1024];
		private int ptr = 0;
		private int buflen = 0;
		private boolean hasNextByte() {
				if (ptr < buflen) {
						return true;
				}else{
						ptr = 0;
						try {
								buflen = in.read(buffer);
						} catch (IOException e) {
								e.printStackTrace();
						}
						if (buflen <= 0) {
								return false;
						}
				}
				return true;
		}
		private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
		private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
		public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();}
		public String next() {
				if (!hasNext()) throw new NoSuchElementException();
				StringBuilder sb = new StringBuilder();
				int b = readByte();
				while(isPrintableChar(b)) {
						sb.appendCodePoint(b);
						b = readByte();
				}
				return sb.toString();
		}
		public long nextLong() {
				if (!hasNext()) throw new NoSuchElementException();
				long n = 0;
				boolean minus = false;
				int b = readByte();
				if (b == '-') {
						minus = true;
						b = readByte();
				}
				if (b < '0' || '9' < b) {
						throw new NumberFormatException();
				}
				while(true){
						if ('0' <= b && b <= '9') {
								n *= 10;
								n += b - '0';
						}else if(b == -1 || !isPrintableChar(b)){
								return minus ? -n : n;
						}else{
								throw new NumberFormatException();
						}
						b = readByte();
				}
		}
		public int nextInt() {
				long nl = nextLong();
				if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
				return (int) nl;
		}
		public double nextDouble() { return Double.parseDouble(next());}
	}
}
0