結果
問題 | No.489 株に挑戦 |
ユーザー | alpha_virginis |
提出日時 | 2017-03-12 15:53:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,632 bytes |
コンパイル時間 | 1,736 ms |
コンパイル使用メモリ | 177,060 KB |
実行使用メモリ | 7,564 KB |
最終ジャッジ日時 | 2024-06-30 00:27:21 |
合計ジャッジ時間 | 3,161 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 15 ms
6,672 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 15 ms
5,980 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 10 ms
5,396 KB |
testcase_19 | WA | - |
testcase_20 | AC | 16 ms
5,968 KB |
testcase_21 | AC | 5 ms
5,376 KB |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 11 ms
5,672 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 18 ms
7,564 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 16 ms
5,852 KB |
testcase_32 | AC | 11 ms
5,524 KB |
testcase_33 | AC | 18 ms
6,248 KB |
testcase_34 | WA | - |
testcase_35 | AC | 8 ms
5,376 KB |
testcase_36 | AC | 4 ms
5,376 KB |
testcase_37 | AC | 10 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #ifndef LOCAL_ #define fprintf if( false ) fprintf #endif // LOCAL_ #define dumpi(x1) fprintf(stderr, "#%s.%d (%s) = (%d)\n", __func__, __LINE__, #x1, x1); #define dumpii(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%d, %d)\n", __func__, __LINE__, #x1, #x2, x1, x2); #define dumpiii(x1, x2, x3) fprintf(stderr, "#%s.%d (%s, %s, %s) = (%d, %d, %d)\n", __func__, __LINE__, #x1, #x2, #x3, x1, x2, x3); #define dumpl(x1) fprintf(stderr, "#%s.%d (%s) = (%ld)\n", __func__, __LINE__, #x1, x1); #define dumpll(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%ld, %ld)\n", __func__, __LINE__, #x1, #x2, x1, x2); #define dumpd(x1) fprintf(stderr, "#%s.%d (%s) = (%lf)\n", __func__, __LINE__, #x1, x1); #define dumpdd(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%lf, %lf)\n", __func__, __LINE__, #x1, #x2, x1, x2); struct S002 { int n; S002& operator > (long& x) { n = x; return *this; } S002& operator >= (long& x) { if( scanf("%ld", &x) <= 0 ) exit(0); return *this; } S002& operator >= (double& x) { if( scanf("%lf", &x) <= 0 ) exit(0); return *this; } S002& operator >= (std::string& s) { if( not (std::cin >> s) ) exit(0); return *this; } template<typename a> S002& operator >= (std::vector<a>& v) { v.resize(n); for(long i = 0; i < n; ++i) { *this >= v[i]; } return *this; } }; template<typename a> struct S003 { std::vector<a> ys; S003(std::vector<a> xs, long k) { long n = xs.size(); ys.resize(n - k + 1); std::deque<a> q; for(long i = 0; i < n; ++i) { while( not q.empty() and xs[q.back()] >= xs[i]) q.pop_back(); q.push_back(i); long w = i - k + 1; if( w >= 0 ) { ys[w] = xs[q.front()]; if( q.front() == w ) q.pop_front(); } } } }; struct Solver { long n, d, k; std::vector<long> xs; Solver() { S002 r; r >= n >= d >= k >n>= xs; } void solve() { std::vector<long> ys; std::transform(xs.begin(), xs.end(), std::back_inserter(ys), [](long x){ return -x; }); S003<long> s(ys, d + 1); std::vector<long> zs; for(int i = 0; i < (int)s.ys.size(); ++i) { zs.push_back((-s.ys[i]) - xs[i]); } long max = *std::max_element(zs.begin(), zs.end()); auto it = std::find(zs.begin(), zs.end(), max); long x = it - zs.begin(); auto it2 = std::find(xs.begin() + x, xs.end(), xs[x] + max); long y = it2 - xs.begin(); printf("%ld\n", max * k); printf("%ld %ld\n", x, y); } }; int main() { for(;;) { std::unique_ptr<Solver> s(new Solver()); s->solve(); } return 0; }