結果
問題 | No.335 門松宝くじ |
ユーザー | t98slider |
提出日時 | 2023-03-21 21:49:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,601 ms / 2,000 ms |
コード長 | 1,219 bytes |
コンパイル時間 | 1,947 ms |
コンパイル使用メモリ | 176,656 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-18 14:31:32 |
合計ジャッジ時間 | 13,948 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 240 ms
5,376 KB |
testcase_06 | AC | 369 ms
5,376 KB |
testcase_07 | AC | 1,033 ms
5,376 KB |
testcase_08 | AC | 714 ms
5,376 KB |
testcase_09 | AC | 1,549 ms
5,376 KB |
testcase_10 | AC | 1,546 ms
5,376 KB |
testcase_11 | AC | 1,601 ms
5,376 KB |
testcase_12 | AC | 1,559 ms
5,376 KB |
testcase_13 | AC | 1,554 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector<int> a(n); vector<pair<int,int>> b(m); auto f = [&](int l, int r){ int mx = 0; for(int i = 0; i < l; i++){ if(a[i] > a[l] && a[l] < a[r]) mx = max(mx, max({a[i], a[l], a[r]})); if(a[i] < a[l] && a[l] > a[r]) mx = max(mx, max({a[i], a[l], a[r]})); } for(int i = l + 1; i < r; i++){ if(a[l] > a[i] && a[i] < a[r]) mx = max(mx, max({a[i], a[l], a[r]})); if(a[l] < a[i] && a[i] > a[r]) mx = max(mx, max({a[i], a[l], a[r]})); } for(int i = r + 1; i < n; i++){ if(a[l] > a[r] && a[r] < a[i]) mx = max(mx, max({a[i], a[l], a[r]})); if(a[l] < a[r] && a[r] > a[i]) mx = max(mx, max({a[i], a[l], a[r]})); } return mx; }; for(int i = 0; i < m; i++){ for(auto &&v: a) cin >> v; b[i] = {0, -i}; for(int j = 0; j < n; j++){ for(int k = j + 1; k < n; k++){ b[i].first += f(j, k); } } } sort(b.rbegin(), b.rend()); cout << -b[0].second << '\n'; }