結果
| 問題 |
No.945 YKC饅頭
|
| コンテスト | |
| ユーザー |
commy
|
| 提出日時 | 2020-04-05 02:10:02 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 127 ms / 2,000 ms |
| コード長 | 2,660 bytes |
| コンパイル時間 | 726 ms |
| コンパイル使用メモリ | 81,612 KB |
| 実行使用メモリ | 7,296 KB |
| 最終ジャッジ日時 | 2024-07-03 07:55:27 |
| 合計ジャッジ時間 | 6,722 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 74 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <numeric>
#include <utility>
#include <tuple>
#define REP(i, a, b) for (int i = int(a); i < int(b); i++)
using namespace std;
using ll = long long int;
using P = pair<int, int>;
// clang-format off
#ifdef _DEBUG_
#define dump(...) do{ cerr << __LINE__ << ":\t" << #__VA_ARGS__ << " = "; PPPPP(__VA_ARGS__); cerr << endl; } while(false)
template<typename T> void PPPPP(T t) { cerr << t; }
template<typename T, typename... S> void PPPPP(T t, S... s) { cerr << t << ", "; PPPPP(s...); }
#else
#define dump(...) do{ } while(false)
#endif
template<typename T> vector<T> make_v(size_t a, T b) { return vector<T>(a, b); }
template<typename... Ts> auto make_v(size_t a, Ts... ts) { return vector<decltype(make_v(ts...))>(a, make_v(ts...)); }
template<typename T> bool chmin(T &a, T b) { if (a > b) {a = b; return true; } return false; }
template<typename T> bool chmax(T &a, T b) { if (a < b) {a = b; return true; } return false; }
template<typename T> void print(T a) { cout << a << endl; }
template<typename T, typename... Ts> void print(T a, Ts... ts) { cout << a << ' '; print(ts...); }
template<typename T> istream &operator,(istream &in, T &t) { return in >> t; }
// clang-format on
#include <functional>
template<typename T>
class SegmentTreeAllOne {
using Func = function<T(T, T)>;
public:
vector<T> data;
int n;
T init;
Func update_func;
SegmentTreeAllOne(int _n, T _init, Func up) {
init = _init;
update_func = up;
for (n = 1; n < _n; n *= 2)
;
data.resize(2 * n - 1, init);
}
void update(int l, int r, T val) {
for (l += n - 1, r += n - 1; l < r; l = l / 2, r = (r - 1) / 2) {
if (!(l & 1)) {
data[l] = update_func(data[l], val);
}
if (!(r & 1)) {
data[r - 1] = update_func(data[r - 1], val);
}
}
}
T query(int pos) {
pos += n - 1;
T res = data[pos];
while (pos > 0) {
pos = (pos - 1) / 2;
res = update_func(res, data[pos]);
}
return res;
}
};
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n, m;
cin, n, m;
auto MIN = [](P a, P b) {
return min(a, b);
};
SegmentTreeAllOne<P> seg(n, P(m + 1, 0), MIN);
REP(i, 0, m) {
int l, r;
char t;
cin, l, r, t;
seg.update(l - 1, r, P(i, t));
}
int cnt[128] = {0};
REP(i, 0, n) {
cnt[seg.query(i).second]++;
}
print(cnt['Y'], cnt['K'], cnt['C']);
return 0;
}
commy