結果

問題 No.2888 Mamehinata
ユーザー anago-pieanago-pie
提出日時 2024-09-18 19:48:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,838 bytes
コンパイル時間 2,594 ms
コンパイル使用メモリ 214,880 KB
実行使用メモリ 40,192 KB
最終ジャッジ日時 2024-09-18 19:49:25
合計ジャッジ時間 24,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 84 ms
5,376 KB
testcase_14 AC 148 ms
8,576 KB
testcase_15 WA -
testcase_16 AC 676 ms
27,860 KB
testcase_17 WA -
testcase_18 AC 190 ms
7,808 KB
testcase_19 AC 777 ms
28,800 KB
testcase_20 AC 616 ms
24,564 KB
testcase_21 AC 609 ms
23,764 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 636 ms
27,260 KB
testcase_25 AC 387 ms
17,056 KB
testcase_26 AC 476 ms
21,116 KB
testcase_27 AC 312 ms
14,720 KB
testcase_28 AC 96 ms
8,320 KB
testcase_29 AC 273 ms
15,872 KB
testcase_30 AC 811 ms
34,304 KB
testcase_31 AC 677 ms
29,264 KB
testcase_32 AC 427 ms
21,632 KB
testcase_33 AC 581 ms
27,252 KB
testcase_34 AC 507 ms
23,684 KB
testcase_35 AC 418 ms
20,736 KB
testcase_36 AC 897 ms
36,972 KB
testcase_37 AC 919 ms
38,088 KB
testcase_38 AC 244 ms
14,208 KB
testcase_39 AC 811 ms
34,792 KB
testcase_40 AC 949 ms
40,192 KB
testcase_41 AC 150 ms
9,728 KB
testcase_42 AC 802 ms
34,776 KB
testcase_43 AC 623 ms
30,380 KB
testcase_44 AC 685 ms
33,880 KB
testcase_45 AC 777 ms
37,724 KB
testcase_46 AC 76 ms
7,680 KB
testcase_47 AC 631 ms
32,804 KB
testcase_48 AC 451 ms
21,568 KB
testcase_49 AC 30 ms
5,376 KB
testcase_50 AC 101 ms
6,144 KB
testcase_51 AC 6 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 15 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i=0; i<n; i++)
#define debug 0
#define YES cout << "Yes" << endl;
#define NO cout << "No" << endl;
using ll = long long;
using ld = long double;
const int mod = 998244353;
const int MOD = 1000000007;
const double pi = atan2(0, -1);
const int inf = 1 << 31-1;
const ll INF = 1LL << 63 - 1;
#include <time.h>
#include <chrono>

//vectorの中身を空白区切りで出力
template<typename T>
void printv(vector<T> v) {
	for (int i = 0; i < v.size(); i++) {
		cout << v[i];
		if (i < v.size() - 1) {
			cout << " ";
		}
	}
	cout << endl;
}

//vectorの中身を改行区切りで出力
template<typename T>
void print1(vector<T> v) {
	for (auto x : v) {
		cout << x << endl;
	}
}

//二次元配列を出力
template<typename T>
void printvv(vector<vector<T>> vv) {
	for (vector<T> v : vv) {
		printv(v);
	}
}

//vectorを降順にソート
template<typename T>
void rsort(vector<T>& v) {
	sort(v.begin(), v.end());
	reverse(v.begin(), v.end());
}

//昇順priority_queueを召喚
template<typename T>
struct rpriority_queue {
	priority_queue<T, vector<T>, greater<T>> pq;

	void push(T x) {
		pq.push(x);
	}

	void pop() {
		pq.pop();
	}

	T top() {
		return pq.top();
	}

	size_t size() {
		return pq.size();
	}

	bool empty() {
		return pq.empty();
	}
};

//mod mod下で逆元を算出する
//高速a^n計算(mod ver.)
ll power(ll a, ll n) {
	if (n == 0) {
		return 1;
	}
	else if (n % 2 == 0) {
		ll x = power(a, n / 2);
		x *= x;
		x %= mod;
		return x;
	}
	else {
		ll x = power(a, n - 1);
		x *= a;
		x %= mod;
		return x;
	}
}
//フェルマーの小定理を利用
ll modinv(ll p) {
	return power(p, mod - 2) % mod;
}

//Mexを求める
struct Mex {
	map<int, int> mp;
	set<int> s;
	Mex(int Max) {
		for (int i = 0; i <= Max; i++) {
			s.insert(i);
		}
	}

	int _mex = 0;
	void Input(int x) {
		mp[x]++;
		s.erase(x);
		if (_mex == x) {
			_mex = *begin(s);
		}
	}

	void Remove(int x) {
		if (mp[x] == 0) {
			cout << "Mex ERROR!: NO VALUE WILL BE REMOVED" << endl;
		}
		mp[x]--;
		if (mp[x] == 0) {
			s.insert(x);
			if (*begin(s) == x) {
				_mex = x;
			}
		}
	}

	int mex(){
		return _mex;
	}
};

int main() {
	int N, M;
	cin >> N >> M;
	vector<vector<int>> path(N);
	rep(i, M) {
		int u, v;
		cin >> u >> v;
		u--; v--;

		path[u].push_back(v);
		path[v].push_back(u);
	}

	set<int> enter;
	enter.insert(0);
	vector<vector<int>> q(N+1);
	q[0].push_back(0);
	set<int> odd, even;
	even.insert(0);
	rep(t, N) {
		for (int x : q[t]) {
			for (int y : path[x]) {
				if (!enter.count(y)) {
					enter.insert(y);
					if (t % 2 == 0) {
						odd.insert(y);
					}
					else {
						even.insert(y);
					}
					q[t + 1].push_back(y);
				}
			}
		}

		if (t % 2 == 0) {
			cout << odd.size() << endl;
		}
		else {
			cout << even.size() << endl;
		}
	}
}
0