結果
問題 | No.2566 美しい整数列 |
ユーザー | ゆにぽけ |
提出日時 | 2023-12-02 16:23:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 159 ms / 2,000 ms |
コード長 | 1,925 bytes |
コンパイル時間 | 1,450 ms |
コンパイル使用メモリ | 140,040 KB |
実行使用メモリ | 20,480 KB |
最終ジャッジ日時 | 2024-09-26 20:14:08 |
合計ジャッジ時間 | 5,320 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 146 ms
20,480 KB |
testcase_05 | AC | 153 ms
20,480 KB |
testcase_06 | AC | 68 ms
7,808 KB |
testcase_07 | AC | 69 ms
7,936 KB |
testcase_08 | AC | 67 ms
7,936 KB |
testcase_09 | AC | 69 ms
7,808 KB |
testcase_10 | AC | 70 ms
7,936 KB |
testcase_11 | AC | 93 ms
11,008 KB |
testcase_12 | AC | 93 ms
11,008 KB |
testcase_13 | AC | 94 ms
11,008 KB |
testcase_14 | AC | 92 ms
11,008 KB |
testcase_15 | AC | 93 ms
11,008 KB |
testcase_16 | AC | 140 ms
19,584 KB |
testcase_17 | AC | 150 ms
19,840 KB |
testcase_18 | AC | 159 ms
19,968 KB |
testcase_19 | AC | 96 ms
14,336 KB |
testcase_20 | AC | 141 ms
18,560 KB |
testcase_21 | AC | 151 ms
19,072 KB |
testcase_22 | AC | 93 ms
13,312 KB |
testcase_23 | AC | 114 ms
17,152 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cstring> #include<cassert> #include<cmath> #include<ctime> #include<iomanip> #include<numeric> #include<stack> #include<queue> #include<map> #include<unordered_map> #include<set> #include<unordered_set> #include<bitset> #include<random> #include<functional> #include<utility> using namespace std; #include<algorithm> #include<vector> #include<cassert> using namespace std; struct UnionFind { private: int n; vector<int> par,siz; public: UnionFind(int n) :n(n),par(n,-1),siz(n,1) {} int root(int u) { assert(0 <= u && u < n); return (par[u] < 0 ? u:par[u] = root(par[u])); } bool same(int u,int v) { assert(0 <= u && u < n && 0 <= v && v < n); return root(u) == root(v); } bool unite(int u,int v) { assert(0 <= u && u < n && 0 <= v && v < n); u = root(u),v = root(v); if(u == v) return false; if(siz[u] < siz[v]) swap(u,v); siz[u] += siz[v]; par[v] = u; return true; } int size(int u) { assert(0 <= u && u < n); return siz[root(u)]; } vector<vector<int>> components() { vector<vector<int>> ret(n); for(int u = 0;u < n;u++) ret[root(u)].push_back(u); ret.erase(remove_if(ret.begin(),ret.end(),[](vector<int> v) { return v.empty();}),ret.end()); return ret; } }; void solve() { int N,M; cin >> N >> M; vector<long long> A(N),B(M),C(N); for(int i = 0;i < N;i++) cin >> A[i]; for(int i = 0;i < M;i++) cin >> B[i]; for(int i = 0;i < N;i++) cin >> C[i]; long long S = 0; for(int i = 0;i < N;i++) { A[i] -= S; S += B[i%M]; } map<long long,long long> mp; long long ans = 0; for(int i = 0;i < N;i++) { mp[A[i]] += C[i]; ans += C[i]; } long long mx = 0; for(auto it = mp.begin();it != mp.end();it++) mx = max(mx,it->second); ans -= mx; cout << ans << endl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; /* cin >> tt; */ while(tt--) solve(); }