結果

問題 No.844 split game
ユーザー hiromi_ayasehiromi_ayase
提出日時 2019-06-28 22:23:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 5,567 bytes
コンパイル時間 2,588 ms
コンパイル使用メモリ 91,440 KB
実行使用メモリ 51,852 KB
最終ジャッジ日時 2024-07-02 04:54:41
合計ジャッジ時間 22,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
48,856 KB
testcase_01 AC 385 ms
48,484 KB
testcase_02 AC 551 ms
51,832 KB
testcase_03 AC 508 ms
49,888 KB
testcase_04 AC 358 ms
48,588 KB
testcase_05 AC 611 ms
51,168 KB
testcase_06 AC 362 ms
48,676 KB
testcase_07 AC 365 ms
48,544 KB
testcase_08 AC 274 ms
47,208 KB
testcase_09 AC 502 ms
50,720 KB
testcase_10 AC 616 ms
51,844 KB
testcase_11 AC 611 ms
51,012 KB
testcase_12 AC 504 ms
50,500 KB
testcase_13 AC 382 ms
48,804 KB
testcase_14 AC 408 ms
48,704 KB
testcase_15 AC 640 ms
51,776 KB
testcase_16 AC 652 ms
51,824 KB
testcase_17 AC 648 ms
51,524 KB
testcase_18 AC 665 ms
51,680 KB
testcase_19 AC 653 ms
50,988 KB
testcase_20 AC 643 ms
51,740 KB
testcase_21 AC 667 ms
51,680 KB
testcase_22 AC 672 ms
51,852 KB
testcase_23 AC 172 ms
41,552 KB
testcase_24 AC 210 ms
45,168 KB
testcase_25 AC 186 ms
42,852 KB
testcase_26 AC 139 ms
40,344 KB
testcase_27 AC 195 ms
43,852 KB
testcase_28 AC 120 ms
39,428 KB
testcase_29 AC 203 ms
44,116 KB
testcase_30 AC 211 ms
45,488 KB
testcase_31 AC 197 ms
43,560 KB
testcase_32 AC 131 ms
40,192 KB
testcase_33 AC 219 ms
46,188 KB
testcase_34 AC 188 ms
43,320 KB
testcase_35 AC 224 ms
45,948 KB
testcase_36 AC 197 ms
44,016 KB
testcase_37 AC 258 ms
46,444 KB
testcase_38 AC 337 ms
48,624 KB
testcase_39 AC 478 ms
50,696 KB
testcase_40 AC 324 ms
47,964 KB
testcase_41 AC 81 ms
38,232 KB
testcase_42 AC 82 ms
37,912 KB
testcase_43 AC 81 ms
37,952 KB
testcase_44 AC 82 ms
38,108 KB
testcase_45 AC 82 ms
38,124 KB
testcase_46 AC 84 ms
38,220 KB
testcase_47 AC 83 ms
38,360 KB
testcase_48 AC 84 ms
38,168 KB
testcase_49 AC 80 ms
37,736 KB
testcase_50 AC 80 ms
38,168 KB
testcase_51 AC 84 ms
37,952 KB
testcase_52 AC 83 ms
37,968 KB
testcase_53 AC 83 ms
37,892 KB
testcase_54 AC 82 ms
38,080 KB
testcase_55 AC 84 ms
38,064 KB
testcase_56 AC 82 ms
38,164 KB
testcase_57 AC 83 ms
37,624 KB
testcase_58 AC 81 ms
38,068 KB
testcase_59 AC 85 ms
38,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;

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;
  }
  
  public long min(int l, int r){ return l >= r ? 0 : min(l, r, 0, H, 1);}
  
  private long min(int l, int r, int cl, int cr, int cur)
  {
      if(l <= cl && cr <= r){
          return st[cur];
      }else{
          int mid = cl+cr>>>1;
          long ret = Long.MAX_VALUE;
          if(cl < r && l < mid){
              ret = Math.min(ret, min(l, r, cl, mid, 2*cur));
          }
          if(mid < r && l < cr){
              ret = Math.min(ret, min(l, r, mid, cr, 2*cur+1));
          }
          return ret;
      }
  }
  
  public int firstle(int l, long v) {
      int cur = H+l;
      while(true){
          if(st[cur] <= v){
              if(cur < H){
                  cur = 2*cur;
              }else{
                  return cur-H;
              }
          }else{
              cur++;
              if((cur&cur-1) == 0)return -1;
              if((cur&1)==0)cur>>>=1;
          }
      }
  }
  
  public int lastle(int l, long v) {
      int cur = H+l;
      while(true){
          if(st[cur] <= v){
              if(cur < H){
                  cur = 2*cur+1;
              }else{
                  return cur-H;
              }
          }else{
              if((cur&cur-1) == 0)return -1;
              cur--;
              if((cur&1)==1)cur>>>=1;
          }
      }
  }
}



public class Main {



  private static void solve() {
    int n = ni();
    int m = ni();
    int a = ni();
    
    int[][] p = ntable(m, 3);
    Arrays.sort(p, (o1, o2) -> o1[1] - o2[1]);
    
    SegmentTreeRMQL st = new SegmentTreeRMQL(n + 1);
    st.update(0, 0);
    

    int ptr = 0;
    for (int i = 1; i <= n; i ++) {
      long v = -st.min(0, i) - (i == n ? 0 : a);

      while (ptr < m && p[ptr][1] == i) {
        int l = p[ptr][0] - 1;
        int r = p[ptr][1];
        long lv = -st.min(l, l + 1);

        v = Math.max(v, lv + p[ptr][2] - (r == n ? 0 : a));
        ptr ++;
      }
      st.update(i, -v);
    }
    System.out.println(-st.min(n, n + 1));
  }

  
  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