結果

問題 No.321 (P,Q)-サンタと街の子供たち
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-27 19:30:53
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,128 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 75,420 KB
実行使用メモリ 159,104 KB
最終ジャッジ日時 2024-11-21 07:21:44
合計ジャッジ時間 105,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
81,312 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
87,840 KB
testcase_04 AC 2 ms
13,632 KB
testcase_05 AC 2 ms
63,780 KB
testcase_06 AC 1,131 ms
46,880 KB
testcase_07 AC 531 ms
96,512 KB
testcase_08 TLE -
testcase_09 AC 668 ms
97,664 KB
testcase_10 AC 288 ms
19,620 KB
testcase_11 TLE -
testcase_12 AC 260 ms
19,108 KB
testcase_13 AC 133 ms
90,368 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstdio>
#include <set>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)

const int INF = 1e9;
int p, q, n;
int x[100001], y[100001];

int main(void){
	cin >> p >> q >> n;
	int lx = INF, rx = -INF, uy = -INF, sy = INF;
	rep(i, n){
		cin >> x[i] >> y[i];
		lx = min(lx, x[i]);//左端
		rx = max(rx, x[i]);//右端
		uy = max(uy, y[i]);//上
		sy = min(sy, y[i]);//下
	}
	int dx[] = {p, p, -p, -p, q, q, -q, -q};
	int dy[] = {q, -q, q, -q, p, -p, p, -p};

	set<pair<int, int> > s;
	queue<pair<int, int> > q;
	q.push(make_pair(0, 0));
	while(!q.empty()){
		auto now = q.front(); q.pop();
		// printf("k %d %d\n", now.first, now.second);
		rep(i, 8){
			int ny = now.first + dy[i], nx = now.second + dx[i];
			if(!(lx <= nx && nx <= rx && sy <= ny && ny <= uy)) continue;
			if(s.count(make_pair(ny, nx)) != 0) continue;
			// printf("%d %d\n", nx, ny);
			s.insert(make_pair(ny, nx));
			q.push(make_pair(ny, nx));
		}
	}

	int ret = 0;
	rep(i, n){
		if(s.count(make_pair(y[i], x[i])) != 0){
			ret++;
		}
	}
	printf("%d\n", ret);
}
0