結果

問題 No.607 開通777年記念
ユーザー shung11260shung11260
提出日時 2019-10-11 01:46:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 62,456 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-05-02 00:14:14
合計ジャッジ時間 2,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 38 ms
7,424 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 222 ms
18,944 KB
testcase_12 AC 205 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main() {
    int N, M;
    cin >> N >> M;
    vector<vector<long long int> > A(M, vector<long long int>(N, 0));
    vector<vector<long long int> > S(M, vector<long long int>(N+1, 0));
    for(int m=0; m<M; m++) {
        for(int n=0; n<N; n++) {
            long long int a;
            cin >> a;
            A[m][n] += a;
            if(m>0) {
                A[m][n] += A[m-1][n];
            }
            S[m][n+1] += S[m][n] + A[m][n];
            // cout << S[m][n+1] << " ";
            // cout << A[m][n] << " ";
        }
        // cout << endl;
    }
    
    for(int m=0; m<M; m++) {
        int l, r=1, prevl;
        for(l=0; l<N; l++) {
            while(S[m][r]-S[m][l]<777 && r<N+1) {
                r++;
            }
            if(S[m][r]-S[m][l]==777) {
                cout << "YES" << endl;
                return 0;
            }
            prevl = l;
            while(S[m][r]-S[m][l]>777) {
                l++;
            }
            if(prevl==l) break;
            l--;
        }
    }
    cout << "NO" << endl;
    

    return 0;
    
}
0