結果
問題 | No.1141 田グリッド |
ユーザー | 草苺奶昔 |
提出日時 | 2023-03-10 22:55:15 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,732 bytes |
コンパイル時間 | 15,840 ms |
コンパイル使用メモリ | 239,600 KB |
実行使用メモリ | 7,836 KB |
最終ジャッジ日時 | 2024-09-18 05:03:36 |
合計ジャッジ時間 | 21,879 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 5 ms
6,944 KB |
testcase_09 | AC | 4 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 126 ms
7,808 KB |
testcase_14 | AC | 135 ms
7,824 KB |
testcase_15 | AC | 136 ms
7,828 KB |
testcase_16 | AC | 134 ms
7,836 KB |
testcase_17 | AC | 134 ms
7,832 KB |
testcase_18 | AC | 133 ms
7,832 KB |
testcase_19 | AC | 135 ms
7,832 KB |
testcase_20 | AC | 133 ms
7,832 KB |
testcase_21 | AC | 137 ms
7,832 KB |
testcase_22 | AC | 136 ms
7,836 KB |
testcase_23 | AC | 136 ms
7,832 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" ) const MOD int = 1e9 + 7 func main() { // https://yukicoder.me/problems/no/1141 // 每次操作将第r行和第c列所有格子涂黑 // 求剩下的格子里所有数的乘积模1e9+7 in := bufio.NewReader(os.Stdin) out := bufio.NewWriter(os.Stdout) defer out.Flush() var row, col int fmt.Fscan(in, &row, &col) grid := make([][]int, row) for i := 0; i < row; i++ { grid[i] = make([]int, col) for j := 0; j < col; j++ { fmt.Fscan(in, &grid[i][j]) } } var q int fmt.Fscan(in, &q) ops := make([][2]int, q) for i := 0; i < q; i++ { fmt.Fscan(in, &ops[i][0], &ops[i][1]) ops[i][0]-- ops[i][1]-- } res := solve(grid, ops) for _, v := range res { fmt.Fprintln(out, v) } } func solve(grid [][]int, ops [][2]int) []int { P := NewPreSum2D(grid) ROW, COL := len(grid), len(grid[0]) res := make([]int, 0, len(ops)) for _, op := range ops { r, c := op[0], op[1] res1 := P.Query(0, r, 0, c) res2 := P.Query(r+1, ROW, 0, c) res3 := P.Query(0, r, c+1, COL) res4 := P.Query(r+1, ROW, c+1, COL) res = append(res, P.op(P.op(res1, res2), P.op(res3, res4))) } return res } type E = int func (*PreSum2D) e() E { return 1 } func (*PreSum2D) op(a, b E) E { return a * b % MOD } func (*PreSum2D) inv(a E) E { return pow(a, MOD-2, MOD) } func pow(base, exp, mod int) int { base %= mod res := 1 for ; exp > 0; exp >>= 1 { if exp&1 == 1 { res = res * base % mod } base = base * base % mod } return res } type PreSum2D struct { row, col int data []E } func NewPreSum2D(matrix [][]E) *PreSum2D { res := &PreSum2D{} row := len(matrix) col := 0 if row > 0 { col = len(matrix[0]) } data := make([]E, row*col) for i := 0; i < row; i++ { for j := 0; j < col; j++ { data[i*col+j] = res.e() } } for i := 0; i < row; i++ { for j := 0; j < col; j++ { k := i*col + j if j == 0 { data[k] = matrix[i][j] } else { data[k] = res.op(data[k-1], matrix[i][j]) // 行 } } } for i := col; i < row*col; i++ { data[i] = res.op(data[i-col], data[i]) // 列 } res.row = row res.col = col res.data = data return res } // [x1,x2) x [y1,y2) // 0 <= x1 <= x2 <= row // 0 <= y1 <= y2 <= col func (p *PreSum2D) Query(x1, x2, y1, y2 int) E { if x2 == 0 || y2 == 0 { return p.e() } x1, x2, y1, y2 = x1-1, x2-1, y1-1, y2-1 var a, b, c, d E if x1 >= 0 && y1 >= 0 { a = p.data[x1*p.col+y1] } else { a = p.e() } if x1 >= 0 && y2 >= 0 { b = p.data[x1*p.col+y2] } else { b = p.e() } if x2 >= 0 && y1 >= 0 { c = p.data[x2*p.col+y1] } else { c = p.e() } if x2 >= 0 && y2 >= 0 { d = p.data[x2*p.col+y2] } else { d = p.e() } return p.op(p.op(a, d), p.inv(p.op(b, c))) }