結果
問題 | No.989 N×Mマス計算(K以上) |
ユーザー | Mister |
提出日時 | 2020-04-19 20:25:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 1,265 bytes |
コンパイル時間 | 964 ms |
コンパイル使用メモリ | 96,268 KB |
実行使用メモリ | 8,300 KB |
最終ジャッジ日時 | 2024-10-06 06:13:25 |
合計ジャッジ時間 | 2,495 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 35 ms
6,296 KB |
testcase_11 | AC | 47 ms
7,576 KB |
testcase_12 | AC | 44 ms
7,052 KB |
testcase_13 | AC | 32 ms
6,508 KB |
testcase_14 | AC | 61 ms
8,300 KB |
testcase_15 | AC | 14 ms
5,248 KB |
testcase_16 | AC | 25 ms
5,424 KB |
testcase_17 | AC | 32 ms
6,632 KB |
testcase_18 | AC | 10 ms
5,248 KB |
testcase_19 | AC | 49 ms
7,752 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <map> template <class T> std::map<T, int> compress(std::vector<T>& v) { std::sort(v.begin(), v.end()); v.erase(std::unique(v.begin(), v.end()), v.end()); std::map<T, int> rev; for (int i = 0; i < (int)v.size(); ++i) rev[v[i]] = i; return rev; } using lint = long long; constexpr lint INF = 1LL << 60; void solve() { int n, m; lint k; char op; std::cin >> n >> m >> k >> op; std::vector<lint> xs(m); for (auto& x : xs) std::cin >> x; auto nxs = xs; nxs.push_back(-INF); auto revx = compress(nxs); std::vector<lint> cnt(revx.size() + 1, 0); for (auto x : xs) ++cnt[revx[x]]; for (int i = 1; i <= (int)revx.size(); ++i) cnt[i] += cnt[i - 1]; lint ans = 0; while (n--) { lint y; std::cin >> y; lint lx; if (op == '+') { lx = k - y; } else { lx = (k + y - 1) / y; } int i = std::lower_bound(nxs.begin(), nxs.end(), lx) - nxs.begin(); ans += m - cnt[i - 1]; } std::cout << ans << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }