結果
問題 | No.2759 Take Pictures, Elements? |
ユーザー | traindoggo |
提出日時 | 2024-05-17 23:43:25 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,221 bytes |
コンパイル時間 | 3,572 ms |
コンパイル使用メモリ | 253,696 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-20 15:40:32 |
合計ジャッジ時間 | 4,374 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 3 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h>using namespace std;#ifdef DEBUG_#include <compe/debug.hpp>#else#define dump(...)#endif// clang-format offstruct Fast{Fast(){std::cin.tie(0);ios::sync_with_stdio(false);}} fast;#define rep(i,n) for (int i=0;i<(int)n;++i)#define die(msg) do{cout<<(msg)<<'\n',exit(0);}while(0)#define el '\n'#define all(k) k.begin(), k.end()#define rall(k) k.rbegin(), k.rend()#define INFi 1 << 30#define INFll 1LL << 60#define MOD17 10'0000'0007#define MOD98 9'9824'4353template <typename T> inline bool chmax(T& a, const T& b) {return ((a < b) ? (a = b, true) : false);}template <typename T> inline bool chmin(T& a, const T& b) {return ((a > b) ? (a = b, true) : false);}using ll = long long int;// clang-format onint main() {// n <= 10^3// q <= 10^3int n, q;cin >> n >> q;map<int, vector<int>> mp;rep(i, n) {int a;cin >> a;mp[a].push_back(i);}ll ans{};int idx{0};rep(_, q) {int b;cin >> b;// mp[b] の indexint pos = lower_bound(all(mp[b]), idx) - mp[b].begin();if ((int)mp[b].size() == pos) pos--;int nx = mp[b][pos];ans += abs(idx - nx);idx = nx;}cout << ans << el;}