-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path766b.cpp
More file actions
41 lines (34 loc) · 842 Bytes
/
766b.cpp
File metadata and controls
41 lines (34 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pi = pair<ll, ll>;
using vi = vector<ll>;
using vpi = vector<pi>;
using vb = vector<bool>;
void solve() {
ll n, m;
cin >> n >> m;
vi dist(n * m);
ll idx = 0;
for (ll i = 0; i < n; i++) {
for (ll j = 0; j < m; j++) {
ll mx = 0;
mx = max(mx, abs(i - 0) + abs(j - 0));
mx = max(mx, abs(i - (n-1)) + abs(j - (m-1)));
mx = max(mx, abs(i - 0) + abs(j - (m-1)));
mx = max(mx, abs(i - (n-1)) + abs(j - 0));
dist[idx++] = mx;
}
}
sort(dist.begin(), dist.end());
for(ll i : dist) cout << i << " ";
cout << endl;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll t;
cin >> t;
while(t--) solve();
return 0;
}