結果

問題 No.2230 Good Omen of White Lotus
ユーザー chro_96chro_96
提出日時 2023-02-24 23:27:12
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 2,293 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 31,744 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-09-13 06:10:23
合計ジャッジ時間 4,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 45 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 70 ms
6,940 KB
testcase_17 AC 70 ms
6,944 KB
testcase_18 AC 68 ms
6,940 KB
testcase_19 AC 69 ms
6,944 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 9 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 89 ms
6,940 KB
testcase_28 AC 94 ms
6,940 KB
testcase_29 AC 91 ms
6,940 KB
testcase_30 AC 98 ms
6,944 KB
testcase_31 AC 97 ms
6,944 KB
testcase_32 AC 97 ms
7,136 KB
testcase_33 AC 140 ms
7,040 KB
testcase_34 AC 138 ms
7,044 KB
testcase_35 AC 138 ms
7,100 KB
testcase_36 AC 138 ms
7,296 KB
testcase_37 AC 142 ms
7,240 KB
testcase_38 AC 138 ms
7,044 KB
testcase_39 AC 137 ms
7,000 KB
testcase_40 AC 44 ms
6,944 KB
testcase_41 AC 40 ms
6,944 KB
testcase_42 AC 83 ms
6,940 KB
testcase_43 AC 9 ms
6,944 KB
testcase_44 AC 112 ms
6,940 KB
testcase_45 AC 45 ms
6,940 KB
testcase_46 AC 73 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int cmp (const void *a, const void *b) {
  int *a_ = (int *)a;
  int *b_ = (int *)b;
  
  if (a_[0] > b_[0]) {
    return 1;
  }
  
  if (a_[0] < b_[0]) {
    return -1;
  }
  
  if (a_[1] > b_[1]) {
    return 1;
  }
  
  if (a_[1] < b_[1]) {
    return -1;
  }
  
  return 0;
}

long long power_mod (long long a, long long b, long long mod_num) {
  long long ans = 1LL;
  
  if (b > 0LL) {
    ans = power_mod(a, b/2LL, mod_num);
    ans = (ans * ans) % mod_num;
    if (b%2LL == 1LL) {
      ans = (ans * (a % mod_num)) % mod_num;
    }
  }
  
  return ans;
}

void set_segt (int *t, int idx, int val, int size) {
  idx = idx+size-1;
  t[idx] = val;
  
  while (idx > 0) {
    idx = (idx-1)/2;
    t[idx] = t[2*idx+1];
    if (t[2*idx+2] > t[idx]) {
      t[idx] = t[2*idx+2];
    }
  }
  
  return;
}

int max_segt_rec (int *t, int a, int b, int k, int l, int r) {
  int ans = 0;
  int tmp = 0;
  
  if (r <= a || b <= l) {
    return 0;
  }
  
  if (a <= l && r <= b) {
    return t[k];
  }
  
  ans = max_segt_rec(t, a, b, 2*k+1, l, (l+r)/2);
  tmp = max_segt_rec(t, a, b, 2*k+2, (l+r)/2, r);
  
  if (tmp > ans) {
    ans = tmp;
  }
  
  return ans;
}

int max_segt (int *t, int a, int b, int size) {
  return max_segt_rec(t, a, b, 0, 0, size);
}

int main () {
  int h = 0;
  int w = 0;
  int n = 0;
  long long p = 0LL;
  int xy[200000][2] = {};
    
  int res = 0;
  
  long long ans = 0LL;
  long long mod_num = 998244353LL;
  
  int max = 0;
  
  int t[600000] = {};
  int size = 1;
  
  res = scanf("%d", &h);
  res = scanf("%d", &w);
  res = scanf("%d", &n);
  res = scanf("%lld", &p);
  for (int i = 0; i < n; i++) {
    res = scanf("%d", xy[i]);
    res = scanf("%d", xy[i]+1);
  }
  
  qsort(xy, n, sizeof(int)*2, cmp);
  
  while (size <= w) {
    size <<= 1;
  }
  
  for (int i = 0; i < n; i++) {
    int tmp = max_segt(t, 0, xy[i][1]+1, size);
    set_segt(t, xy[i][1], tmp+1, size);
  }
  
  max = max_segt(t, 0, w+1, size);
  
  ans = power_mod(p-2LL, (long long)max, mod_num);
  ans *= power_mod(p-1LL, (long long)(h+w-3-max), mod_num);
  ans %= mod_num;
  ans *= power_mod(p, ((long long)(h+w-3))*(mod_num-2LL), mod_num);
  ans %= mod_num;
  
  ans = 1LL+mod_num-ans;
  ans %= mod_num;
  
  printf("%lld\n", ans);
  return 0;
}
0