結果

問題 No.1660 Matrix Exponentiation
ユーザー Hideaki ItoHideaki Ito
提出日時 2021-08-27 22:46:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,240 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 173,028 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 03:31:34
合計ジャッジ時間 2,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 19 ms
6,944 KB
testcase_28 AC 21 ms
6,940 KB
testcase_29 AC 21 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:34:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   34 |     for(auto [r, c]: V[0]) chmax(ans, (n-r)+c+1);
      |              ^
main.cpp:39:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   39 |     for(auto [r, c]: V[2]) chmax(ans, r+(n-c)+1);
      |              ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define REP(i,m,n) for(int i=(int)(m); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define RREP(i,m,n) for(int i=(int)(m); i>=(int)(n); i--)
#define rrep(i,n) RREP(i,(n)-1,0)
#define all(v) v.begin(), v.end()
#define endk '\n'
const int inf = 1e9+7;
const ll longinf = 1LL<<60;
const ll mod = 1e9+7;
const ll mod2 = 998244353;
const ld eps = 1e-10;
template<typename T1, typename T2> inline void chmin(T1 &a, T2 b){if(a>b) a=b;}
template<typename T1, typename T2> inline void chmax(T1 &a, T2 b){if(a<b) a=b;}

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  int n, k; cin >> n >> k;
  vector<vector<pair<int, int>>> V(3);
  rep(i, k) {
    int r, c; cin >> r >> c;
    if(r > c)       V[0].push_back({r, c});
    else if(r == c) V[1].push_back({r, c});
    else            V[2].push_back({r, c});
  }
  if(V[1].size()) cout << -1 << endk;
  else if(V[0].size() && V[2].size()) cout << -1 << endk;
  else if(V[0].size()) {
    int ans = 1;
    for(auto [r, c]: V[0]) chmax(ans, (n-r)+c+1);
    cout << ans << endk;
  }
  else {
    int ans = 1;
    for(auto [r, c]: V[2]) chmax(ans, r+(n-c)+1);
    cout << ans << endk;
  }
  return 0;
}
0