結果

問題 No.3372 Suitable Constraint
コンテスト
ユーザー tnakao0123
提出日時 2025-11-23 17:38:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 60,932 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-11-23 17:38:22
合計ジャッジ時間 2,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:39:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |   scanf("%d", &tn);
      |   ~~~~~^~~~~~~~~~~
main.cpp:43:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   43 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
main.cpp:44:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |     for (int i = 0; i < n; i++) scanf("%d", as + i);
      |                                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #
raw source code

/* -*- coding: utf-8 -*-
 *
 * 3372.cc:  No.3372 Suitable Constraint - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
#include<utility>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

using ll = long long;
using vi = vector<int>;
using pii = pair<int,int>;

/* global variables */

int as[MAX_N];

/* subroutines */

pii minmaxv(vi &bs) {
  int minb = *min_element(bs.begin(), bs.end());
  int maxb = *max_element(bs.begin(), bs.end());
  return {minb, maxb};
}

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int n;
    scanf("%d", &n);
    for (int i = 0; i < n; i++) scanf("%d", as + i);

    int zc = 0;
    vi pas, mas;
    for (int i = 0; i < n; i++) {
      if (as[i] > 0) pas.push_back(as[i]);
      else if (as[i] < 0) mas.push_back(as[i]);
      else zc++;
    }

    ll x = 0;
    if (zc > 0) x = 0;
    else if (mas.empty()) {
      auto [minp, maxp] = minmaxv(pas);
      x = (ll)minp * maxp;
    }
    else if (pas.empty()) {
      auto [minm, maxm] = minmaxv(mas);
      x = (ll)minm * maxm;
    }
    else {
      int minp = *min_element(pas.begin(), pas.end());
      int maxm = *max_element(mas.begin(), mas.end());
      x = (ll)minp * maxm;
    }

    printf("%lld\n", x);
  }

  return 0;
}

0