結果
問題 | No.1774 Love Triangle (Hard) |
ユーザー | ygussany |
提出日時 | 2021-10-03 17:11:49 |
言語 | C (gcc 12.3.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,220 bytes |
コンパイル時間 | 604 ms |
コンパイル使用メモリ | 34,788 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-26 20:52:08 |
合計ジャッジ時間 | 13,690 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 5 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 23 ms
6,944 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 211 ms
6,940 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | RE | - |
testcase_19 | AC | 5 ms
6,944 KB |
testcase_20 | AC | 24 ms
6,944 KB |
testcase_21 | AC | 13 ms
6,944 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | RE | - |
testcase_82 | RE | - |
testcase_83 | RE | - |
testcase_84 | RE | - |
testcase_85 | RE | - |
testcase_86 | RE | - |
testcase_87 | RE | - |
testcase_88 | RE | - |
testcase_89 | RE | - |
testcase_90 | RE | - |
testcase_91 | RE | - |
testcase_92 | RE | - |
ソースコード
#include <stdio.h> #define DIM 200 #define M_MAX 600 const int Mod = 19997; int div_mod(int x, int y, int z) { if (x % y == 0) return x / y; else return (div_mod((1 + x / y) * y - x, (z % y), y) * z + x) / y; } int rank_matrix(int d, int A[][DIM]) { if (d <= 0) return 1; int i, j, k, r, p[DIM], X[DIM][DIM], inv, tmp[DIM]; for (i = 0; i < d; i++) p[i] = i; for (i = 0; i < d; i++) { for (j = 0; j < d; j++) { X[i][j] = A[i][j] % Mod; if (X[i][j] < 0) X[i][j] += Mod; } } for (i = 0, r = 0; i < d; i++) { for (j = r; j < d; j++) if (X[i][p[j]] != 0) break; if (j == d) continue; else if (j != r) { p[r] ^= p[j]; p[j] ^= p[r]; p[r] ^= p[j]; } inv = div_mod(1, X[i][p[r]], Mod); for (k = i; k < d; k++) tmp[k] = X[k][p[r]] * inv % Mod; for (j = r + 1; j < d; j++) { if (X[i][p[j]] != 0) { for (k = i + 1; k < d; k++) { X[k][p[j]] -= tmp[k] * X[i][p[j]] % Mod; if (X[k][p[j]] < 0) X[k][p[j]] += Mod; } X[i][p[j]] = 0; } } r++; } return r; } #define MT_N 624 #define MT_M 397 #define MT_MATRIX_A 0x9908b0dfUL #define MT_UPPER_MASK 0x80000000UL #define MT_LOWER_MASK 0x7fffffffUL static unsigned int mt[MT_N]; static int mti = MT_N + 1; void init_genrand(unsigned int s) { mt[0] = s & 0xffffffffUL; for (mti = 1; mti < MT_N; mti++) { mt[mti] = (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti); mt[mti] &= 0xffffffffUL; } } unsigned int genrand() { unsigned int y; static unsigned int mag01[2] = {0x0UL, MT_MATRIX_A}; if (mti >= MT_N) { int kk; if (mti == MT_N + 1) init_genrand(5489UL); for (kk = 0; kk < MT_N - MT_M; kk++) { y = (mt[kk] & MT_UPPER_MASK) | (mt[kk+1] & MT_LOWER_MASK); mt[kk] = mt[kk+MT_M] ^ (y >> 1) ^ mag01[y&0x1UL]; } for (; kk < MT_N - 1; kk++) { y = (mt[kk] & MT_UPPER_MASK) | (mt[kk+1] & MT_LOWER_MASK); mt[kk] = mt[kk+(MT_M-MT_N)] ^ (y >> 1) ^ mag01[y&0x1UL]; } y = (mt[MT_N-1] & MT_UPPER_MASK) | (mt[0] & MT_LOWER_MASK); mt[MT_N-1] = mt[MT_M-1] ^ (y >> 1) ^ mag01[y&0x1UL]; mti = 0; } y = mt[mti++]; y ^= (y >> 11); y ^= (y << 7) & 0x9d2c5680UL; y ^= (y << 15) & 0xefc60000UL; y ^= (y >> 18); return y; } void chmax(int* a, int b) { if (*a < b) *a = b; } void naive(int N, int M, int u[], int v[], int w[]) { int i, j, ans = 0, Y[DIM][DIM] = {}, r; for (i = 1; i <= M; i++) { r = genrand() % Mod; Y[u[i]][v[i]] += r; if (Y[u[i]][v[i]] >= Mod) Y[u[i]][v[i]] -= Mod; Y[u[i]][w[i]] -= r; if (Y[u[i]][w[i]] < 0) Y[u[i]][w[i]] += Mod; Y[v[i]][u[i]] -= r; if (Y[v[i]][u[i]] < 0) Y[v[i]][u[i]] += Mod; Y[v[i]][w[i]] += r; if (Y[v[i]][w[i]] >= Mod) Y[v[i]][w[i]] -= Mod; Y[w[i]][u[i]] += r; if (Y[w[i]][u[i]] >= Mod) Y[w[i]][u[i]] -= Mod; Y[w[i]][v[i]] -= r; if (Y[w[i]][v[i]] < 0) Y[w[i]][v[i]] += Mod; chmax(&ans, rank_matrix(N, Y)); printf("%d\n", ans / 2); } } int main() { int i, N, M, u[M_MAX + 1], v[M_MAX + 1], w[M_MAX + 1]; scanf("%d %d", &N, &M); for (i = 1; i <= M; i++) scanf("%d %d %d", &(u[i]), &(v[i]), &(w[i])); naive(N, M, u, v, w); fflush(stdout); return 0; }