답안 #1113422

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1113422 2024-11-16T14:40:21 Z Nonoze Make them Meet (EGOI24_makethemmeet) C++17
0 / 100
1 ms 428 KB
#include <bits/stdc++.h>
using namespace std;

#define sz(x) (int)x.size()
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define cmin(a, b) a=min(a, b)
#define cmax(a, b) a=max(a, b)
#define fi first
#define se second
#define pb push_back
#define mp make_pair

#define int long long

void solve();

signed main() {
	ios::sync_with_stdio(0); cin.tie(0);
	solve();
	return 0;
}

vector<vector<int>> vec;


void print() {
	cout << sz(vec) << endl;
	for (auto &a: vec) {
		for (auto &u: a) cout << u << ' ';
		cout << endl;
	}
	cout << endl;
}

void add(vector<int> &a) { vec.pb(a); }


int n, m;
vector<int> a;


void solve() {
	cin >> n >> m; a.clear(), a.resize(n, 1);
	for (int i=1; i<n; i++) {
		a[i-1]=0, a[i]=0;
		add(a);
		a[i-1]=1, a[i]=1;
	}
	for (int i=1; i<n; i++) {
		a[i-1]=0, a[i]=0;
		add(a);
		a[i-1]=1, a[i]=1;
	}
	for (int i=n-1; i>0; i--) {
		a[i-1]=0, a[i]=0;
		add(a);
		a[i-1]=1, a[i]=1;
	}
	for (int i=n-1; i>0; i--) {
		a[i-1]=0, a[i]=0;
		add(a);
		a[i-1]=1, a[i]=1;
	}
	print();
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Correct 1 ms 336 KB Output is correct
3 Incorrect 1 ms 428 KB If people start at 0 and 2, then they can avoid each other
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Correct 1 ms 336 KB Output is correct
3 Incorrect 1 ms 336 KB If people start at 1 and 2, then they can avoid each other
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB If people start at 0 and 2, then they can avoid each other
3 Halted 0 ms 0 KB -