結果
問題 | No.924 紲星 |
ユーザー | polylogK |
提出日時 | 2019-09-05 23:51:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,097 bytes |
コンパイル時間 | 1,698 ms |
コンパイル使用メモリ | 172,892 KB |
実行使用メモリ | 14,120 KB |
最終ジャッジ日時 | 2024-09-15 05:28:35 |
合計ジャッジ時間 | 7,913 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 9 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std::literals::string_literals; using i64 = long long; using std::cout; using std::endl; using std::cin; template<typename T> std::vector<T> make_v(size_t a){return std::vector<T>(a);} template<typename T,typename... Ts> auto make_v(size_t a,Ts... ts){ return std::vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); } int main() { // input int n, q; scanf("%d%d", &n, &q); assert(1 <= n and n <= 2e5); assert(1 <= q and q <= 2e5); std::vector<int> a(n); for(int i = 0; i < n; i++) { scanf("%d", &a[i]); assert(-1e9 <= a[i] and a[i] <= 1e9); } std::vector<int> L(q), R(q); for(int i = 0; i < q; i++) { scanf("%d%d", &L[i], &R[i]); assert(1 <= L[i] and L[i] <= n); assert(1 <= R[i] and R[i] <= n); assert(L[i] <= R[i]); L[i]--; } // solve for(int i = 0; i < q; i++) { std::vector<int> vec(R[i] - L[i]); std::copy(begin(a) + L[i], begin(a) + R[i], begin(vec)); sort(begin(vec), end(vec)); i64 ans = 0; for(auto v: vec) ans += std::abs(v - vec[vec.size() >> 1]); printf("%lld\n", ans); } return 0; }