# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
541654 | 2022-03-24T02:00:44 Z | Olympia | Bob (COCI14_bob) | C++17 | 469 ms | 4432 KB |
#include <vector> #include <algorithm> #include <iostream> #include <set> #include <cmath> #include <map> #include <random> #include <cassert> #include <ctime> #include <cstdlib> #include <limits.h> using namespace std; class Node { public: int64_t left; int64_t right; int64_t tot; bool okay = true; Node (int x) { if (x == 0) { left = right = tot = 0; } else { left = right = tot = 1; } } }; int64_t c2 (int64_t x) { return (x * (x + 1))/2; } Node merge (Node x, Node y) { if (!x.okay) return y; if (!y.okay) return x; Node ans(-1); bool full_x = (c2(x.left) == x.tot && x.tot != 0); bool full_y = (c2(y.left) == y.tot && y.tot != 0); ans.tot = x.tot + y.tot - c2(x.right) - c2(y.left) + c2(x.right + y.left); ans.left = x.left; ans.right = y.right; if (full_x) { ans.left += y.left; } if (full_y) { ans.right += x.right; } return ans; } class SegmentTree { public: SegmentTree (int N) { N = (1 << ((int)floor(log2(N - 1)) + 1)); this->N = N; val.assign(2 * N, Node(0)); } void update (int x, Node y) { x += N - 1; val[x] = y; while (x != 0) { x = (x - 1)/2; val[x] = merge(val[2 * x + 1], val[2 * x + 2]); //cout << val[x].left << " " << val[2 * x + 1].left << " " << val[2 * x + 2].left << '\n'; } } vector<Node> val; private: int N; }; int64_t rectangle_count (vector<int64_t> histogram) { SegmentTree st(histogram.size()); vector<vector<int64_t>> height; for (int i = 0; i < histogram.size(); i++) { st.update(i, Node(1)); while (histogram[i] >= height.size()) { height.emplace_back(); } height[histogram[i]].push_back(i); } int64_t ans = 0; for (int i = 0; i < height.size(); i++) { for (int64_t j: height[i]) { //cout << "UPDATE " << j << '\n'; st.update(j, Node(0)); } ans += st.val[0].tot; //cout << st.val[0].tot << '\n'; } //cout << '\n'; return ans; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int N, M; cin >> N >> M; vector<vector<int>> arr(N); for (int i = 0; i < N; i++) { arr[i].resize(M); for (int j = 0; j < M; j++) { cin >> arr[i][j]; } } vector<int64_t> his; his.assign(M, 1); int64_t ans = 0; for (int r = N - 1; r >= 0; r--) { for (int c = 0; c < M; c++) { his[c]--; } for (int c = 0; c < M; c++) { if (his[c] == 0) { int t = r; int cnt = 0; while (t >= 0 && arr[r][c] == arr[t][c]) { t--; cnt++; } his[c] = cnt; } } vector<vector<int64_t>> h; for (int c = 0; c < M; c++) { if (c == 0 || arr[r][c] != arr[r][c - 1]) { h.push_back({his[c]}); } else { h.back().push_back(his[c]); } } for (auto& vec: h) { ans += rectangle_count(vec); } } cout << ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 340 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 340 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 96 ms | 1368 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 101 ms | 1316 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 99 ms | 1320 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 101 ms | 1368 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 414 ms | 4360 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 414 ms | 4372 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 429 ms | 4432 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 469 ms | 4412 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |