結果

問題 No.607 開通777年記念
ユーザー 0w10w1
提出日時 2017-12-14 12:56:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 205,536 KB
実行使用メモリ 7,512 KB
最終ジャッジ日時 2024-05-08 09:40:37
合計ジャッジ時間 3,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 27 ms
5,504 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 184 ms
7,512 KB
testcase_12 AC 190 ms
7,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAXN = 1 << 10;
const int MAXM = 1 << 10;

int N, M;
int A[MAXM][MAXN];
int cur[MAXN];
int pcur[MAXN + 1];

signed main() {
  ios::sync_with_stdio(false);
  cin >> N >> M;
  for (int i = 0; i < M; ++i) {
    for (int j = 0; j < N; ++j) {
      cin >> A[i][j];
    }
  }
  for (int i = 0; i < M; ++i) {
    for (int j = 0; j < N; ++j) {
      cur[j] += A[i][j];
    }
    for (int j = 0; j < N; ++j) {
      pcur[j + 1] = pcur[j] + cur[j];
    }
    multiset<int> bag;
    for (int j = 0; j <= N; ++j) {
      bag.emplace(pcur[j]);
    }
    for (int j = 0; j < N; ++j) {
      bag.erase(bag.find(pcur[j]));
      if (bag.count(777 + pcur[j])) {
        cout << "YES" << endl;
        exit(0);
      }
    }
  }
  cout << "NO" << endl;
  return 0;
}
0