結果

問題 No.607 開通777年記念
ユーザー wdpuyowdpuyo
提出日時 2020-11-14 09:00:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,375 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 201,060 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-30 04:46:01
合計ジャッジ時間 3,496 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 6 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 71 ms
4,376 KB
testcase_12 AC 73 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 1000000000000000007
#define rep(i, N) for(ll i = 0; i < N; i++)
#define rep2(i, j, k) for(ll i = j; i < k; i++)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define print(x) cout << x << "\n"
#define print2(x, y) cout << x << " " << y << "\n"
#define printv(vec){for(auto p: vec) cout << p << " "; cout << "\n";} 
#define SUM(v) accumulate(v.begin(), v.end(), 0LL)
#define MAX(v) *max_element(v.begin(), v.end())
#define MIN(v) *min_element(v.begin(), v.end())
#define SORT(v) sort(v.begin(), v.end())
#define REV(v) reverse(v.begin(), v.end())
#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
typedef long long ll;
using namespace std;
using vl = vector<ll>;
using vvl = vector<vector<ll>>;

void Main(){
	
	// ll n, k;
	// cin >> n >> k;
	// vvl v(k, vl(2));
	// rep(i, k) cin >> v[i][0] >> v[i][1];

	ll n, m;
	cin >> n >> m;
	vl f(n);
	rep(i, m){
		
		rep(i, n){
			ll in;
			cin >> in;
			f[i] += in;
		}

		ll r = 0;
		ll acc = 0;

		rep(l, n){
			while(r < n && acc + f[r] <= 777){
				acc += f[r];
				r += 1;
			}
			if(acc == 777){
				print("YES");
				return;
			}
			if(l == r) r += 1;
			else acc -= f[l];
		}
		
	}
	
	print("NO");
	
}

int main(){
	
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	ll t = 1;
	// cin >> t;
	rep(i, t) Main();
	return 0;
	
}


0