結果
問題 | No.1209 XOR Into You |
ユーザー | yudedako |
提出日時 | 2020-09-06 18:36:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 347 ms / 2,000 ms |
コード長 | 1,425 bytes |
コンパイル時間 | 1,334 ms |
コンパイル使用メモリ | 123,760 KB |
実行使用メモリ | 76,672 KB |
最終ジャッジ日時 | 2024-11-29 07:28:22 |
合計ジャッジ時間 | 11,517 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 83 ms
5,248 KB |
testcase_05 | AC | 83 ms
5,248 KB |
testcase_06 | AC | 250 ms
75,904 KB |
testcase_07 | AC | 280 ms
64,512 KB |
testcase_08 | AC | 243 ms
58,368 KB |
testcase_09 | AC | 251 ms
58,368 KB |
testcase_10 | AC | 198 ms
48,512 KB |
testcase_11 | AC | 244 ms
57,728 KB |
testcase_12 | AC | 229 ms
53,888 KB |
testcase_13 | AC | 263 ms
60,928 KB |
testcase_14 | AC | 219 ms
52,480 KB |
testcase_15 | AC | 236 ms
55,168 KB |
testcase_16 | AC | 234 ms
54,272 KB |
testcase_17 | AC | 217 ms
51,968 KB |
testcase_18 | AC | 339 ms
73,344 KB |
testcase_19 | AC | 235 ms
54,400 KB |
testcase_20 | AC | 261 ms
61,184 KB |
testcase_21 | AC | 188 ms
47,360 KB |
testcase_22 | AC | 222 ms
76,544 KB |
testcase_23 | AC | 223 ms
76,672 KB |
testcase_24 | AC | 225 ms
76,672 KB |
testcase_25 | AC | 345 ms
76,672 KB |
testcase_26 | AC | 341 ms
76,672 KB |
testcase_27 | AC | 347 ms
76,672 KB |
testcase_28 | AC | 345 ms
76,672 KB |
testcase_29 | AC | 347 ms
76,672 KB |
testcase_30 | AC | 344 ms
76,544 KB |
testcase_31 | AC | 122 ms
5,504 KB |
testcase_32 | AC | 121 ms
5,504 KB |
testcase_33 | AC | 120 ms
5,504 KB |
testcase_34 | AC | 127 ms
5,504 KB |
testcase_35 | AC | 122 ms
5,504 KB |
testcase_36 | AC | 125 ms
5,376 KB |
testcase_37 | AC | 90 ms
5,248 KB |
testcase_38 | AC | 269 ms
64,000 KB |
testcase_39 | AC | 234 ms
57,216 KB |
testcase_40 | AC | 223 ms
76,672 KB |
ソースコード
#include <cmath> #include <vector> #include <iostream> #include <algorithm> #include <set> #include <iomanip> #include <numeric> #include <queue> #include <string> #include <map> #include <fstream> #include <cassert> #include <stack> class Bit { std::vector<int> vec; public: Bit(const int size) :vec(size, 0) {}; void add(int position, const int value) { while (position < vec.size()) { vec[position] += value; position += ~position & (position + 1); } } int get(int position) const { int result{ 0 }; while (position >= 0) { result += vec[position]; position -= ~position & (position + 1); } return result; } }; int main() { int n; std::cin >> n; std::vector<int> from(n), to(n); for (auto& a : from) std::cin >> a; for (auto& b : to) std::cin >> b; if (from.front() != to.front() || from.back() != to.back()) { std::cout << "-1\n"; return 0; } std::map<int, std::queue<int>> map; for (auto i = 1; i < n; ++i) { map[from[i] ^ from[i - 1]].push(i - 1); } std::vector<int> rank; rank.reserve(n - 1); for (auto i = 1; i < n; ++i) { if (map[to[i] ^ to[i - 1]].empty()) { std::cout << "-1\n"; return 0; } rank.push_back(map[to[i] ^ to[i - 1]].front()); map[to[i] ^ to[i - 1]].pop(); } Bit bit(n - 1); long long int result{ 0 }; for (auto i = 0; i < rank.size(); ++i) { result += i - bit.get(rank[i]); bit.add(rank[i], 1); } std::cout << result << '\n'; }