結果

問題 No.777 再帰的ケーキ
ユーザー hiromi_ayasehiromi_ayase
提出日時 2018-12-25 01:15:39
言語 Java19
(openjdk 21)
結果
AC  
実行時間 1,521 ms / 2,000 ms
コード長 4,909 bytes
コンパイル時間 5,221 ms
コンパイル使用メモリ 84,728 KB
実行使用メモリ 93,552 KB
最終ジャッジ日時 2023-10-26 03:09:46
合計ジャッジ時間 19,978 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
54,316 KB
testcase_01 AC 87 ms
54,336 KB
testcase_02 AC 87 ms
52,264 KB
testcase_03 AC 86 ms
54,340 KB
testcase_04 AC 89 ms
54,312 KB
testcase_05 AC 87 ms
54,312 KB
testcase_06 AC 88 ms
54,308 KB
testcase_07 AC 90 ms
54,184 KB
testcase_08 AC 86 ms
54,228 KB
testcase_09 AC 85 ms
54,304 KB
testcase_10 AC 87 ms
54,312 KB
testcase_11 AC 88 ms
54,316 KB
testcase_12 AC 88 ms
54,316 KB
testcase_13 AC 87 ms
54,308 KB
testcase_14 AC 89 ms
54,316 KB
testcase_15 AC 89 ms
54,312 KB
testcase_16 AC 85 ms
54,312 KB
testcase_17 AC 88 ms
54,316 KB
testcase_18 AC 89 ms
54,300 KB
testcase_19 AC 88 ms
54,124 KB
testcase_20 AC 90 ms
54,336 KB
testcase_21 AC 159 ms
56,352 KB
testcase_22 AC 157 ms
56,316 KB
testcase_23 AC 124 ms
54,912 KB
testcase_24 AC 123 ms
55,264 KB
testcase_25 AC 156 ms
56,508 KB
testcase_26 AC 159 ms
56,428 KB
testcase_27 AC 147 ms
56,408 KB
testcase_28 AC 1,517 ms
92,624 KB
testcase_29 AC 1,521 ms
91,296 KB
testcase_30 AC 1,439 ms
93,552 KB
testcase_31 AC 1,458 ms
92,344 KB
testcase_32 AC 730 ms
92,344 KB
testcase_33 AC 521 ms
70,976 KB
testcase_34 AC 645 ms
78,932 KB
testcase_35 AC 1,260 ms
83,592 KB
testcase_36 AC 757 ms
89,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;

public class Main {

  static class SegmentTreeRMQL {
    public int M, H, N;
    public long[] st;
    
    public SegmentTreeRMQL(int n)
    {
        N = n;
        M = Integer.highestOneBit(Math.max(N-1, 1))<<2;
        H = M>>>1;
        st = new long[M];
        Arrays.fill(st, 0, M, Long.MAX_VALUE);
    }
    
    public SegmentTreeRMQL(long[] a)
    {
        N = a.length;
        M = Integer.highestOneBit(Math.max(N-1, 1))<<2;
        H = M>>>1;
        st = new long[M];
        for(int i = 0;i < N;i++){
            st[H+i] = a[i];
        }
        Arrays.fill(st, H+N, M, Long.MAX_VALUE);
        for(int i = H-1;i >= 1;i--)propagate(i);
    }
    
    public void update(int pos, long x)
    {
        st[H+pos] = x;
        for(int i = (H+pos)>>>1;i >= 1;i >>>= 1)propagate(i);
    }
    
    private void propagate(int i)
    {
        st[i] = Math.min(st[2*i], st[2*i+1]);
    }
    
    public long minx(int l, int r){
        long min = Long.MAX_VALUE;
        if(l >= r)return min;
        while(l != 0){
            int f = l&-l;
            if(l+f > r)break;
            long v = st[(H+l)/f];
            if(v < min)min = v;
            l += f;
        }
        
        while(l < r){
            int f = r&-r;
            long v = st[(H+r)/f-1];
            if(v < min)min = v;
            r -= f;
        }
        return min;
    }
  }

  private static void solve() {
    int n = ni();
    int[][] p = ntable(n, 3);
    Arrays.sort(p, (o1, o2) -> o1[0] == o2[0] ? o2[1] - o1[1] : o1[0] - o2[0]);
    Map<Integer, Integer> map = new HashMap<>();
   int[] a = new int[n];
   for (int i = 0; i < n; i ++) {
     a[i] = p[i][1];
   }
   int[] b = shrink(a);
   for (int i = 0; i < n; i ++) {
     map.put(a[i], b[i]);
   }
   

   SegmentTreeRMQL st = new SegmentTreeRMQL(new long[n]);
   for (int[] v : p) {
     int u = map.get(v[1]);
     long now = -st.minx(u, u + 1);
     long nv = -(u == 0 ? 0 : st.minx(0, u)) + v[2];
     st.update(u, -Math.max(now, nv));
   }

   long ret = 0;
   for (int i = 0; i < n; i ++) {
     ret = Math.max(-st.minx(i, i + 1), ret);
   }
   System.out.println(ret);
  }
  
  public static int[] shrink(int[] a)
  {
      int n = a.length;
      long[] b = new long[n];
      for(int i = 0;i < n;i++)b[i] = (long)a[i]<<32|i;
      Arrays.sort(b);
      int[] ret = new int[n];
      int p = 0;
      for(int i = 0;i < n;i++) {
          if(i>0 && (b[i]^b[i-1])>>32!=0)p++;
          ret[(int)b[i]] = p;
      }
      return ret;
  }

  public static void main(String[] args) {
    new Thread(null, new Runnable() {
      @Override
      public void run() {
        long start = System.currentTimeMillis();
        String debug = args.length > 0 ? args[0] : null;
        if (debug != null) {
          try {
            is = java.nio.file.Files.newInputStream(java.nio.file.Paths.get(debug));
          } catch (Exception e) {
            throw new RuntimeException(e);
          }
        }
        reader = new java.io.BufferedReader(new java.io.InputStreamReader(is), 32768);
        solve();
        out.flush();
        tr((System.currentTimeMillis() - start) + "ms");
      }
    }, "", 64000000).start();
  }

  private static java.io.InputStream is = System.in;
  private static java.io.PrintWriter out = new java.io.PrintWriter(System.out);
  private static java.util.StringTokenizer tokenizer = null;
  private static java.io.BufferedReader reader;

  public static String next() {
    while (tokenizer == null || !tokenizer.hasMoreTokens()) {
      try {
        tokenizer = new java.util.StringTokenizer(reader.readLine());
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }
    return tokenizer.nextToken();
  }

  private static double nd() {
    return Double.parseDouble(next());
  }

  private static long nl() {
    return Long.parseLong(next());
  }

  private static int[] na(int n) {
    int[] a = new int[n];
    for (int i = 0; i < n; i++)
      a[i] = ni();
    return a;
  }

  private static char[] ns() {
    return next().toCharArray();
  }

  private static long[] nal(int n) {
    long[] a = new long[n];
    for (int i = 0; i < n; i++)
      a[i] = nl();
    return a;
  }

  private static int[][] ntable(int n, int m) {
    int[][] table = new int[n][m];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[i][j] = ni();
      }
    }
    return table;
  }

  private static int[][] nlist(int n, int m) {
    int[][] table = new int[m][n];
    for (int i = 0; i < n; i++) {
      for (int j = 0; j < m; j++) {
        table[j][i] = ni();
      }
    }
    return table;
  }

  private static int ni() {
    return Integer.parseInt(next());
  }

  private static void tr(Object... o) {
    if (is != System.in)
      System.out.println(java.util.Arrays.deepToString(o));
  }
}
0