# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
683306 | FatihSolak | Red-blue table (IZhO19_stones) | C++17 | 2078 ms | 648 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define N 1005
using namespace std;
char res[N][N];
void solve(){
int a,b;
cin >> a >> b;
int ans = a;
int bestid = 0;
int bestid2 = a;
for(int c = 1;c<=b;c++){
int num = a - (a/2 + 1);
int now = c;
int best = 0;
for(int d = 1;d<=a;d++){
int nw = c;
set<pair<int,int>> s;
for(int i = 0;i<d;i++){
if((b/2 + 1 - (b-c)) <= 0){
nw++;
}
else s.insert({-(b/2 + 1 - (b-c)),i});
}
for(int i = 0;i<c && s.size();i++){
vector<pair<int,int>> use;
while(s.size() && use.size() < num){
use.push_back(*s.begin());
s.erase(s.begin());
}
for(auto u:use){
u.first++;
//ans[u.second][i] = '+';
if(u.first)
s.insert(u);
else nw++;
}
}
if(nw > now){
now = nw;
best = d;
}
}
if(now > ans){
ans = now;
bestid = c;
bestid2 = best;
}
}
for(int i = 0;i<bestid;i++){
for(int j = 0;j<b;j++){
res[i][j] = '-';
}
}
for(int i = bestid;i<a;i++){
for(int j = 0;j<b;j++){
res[i][j] = '+';
}
}
int num = a - (a/2 + 1);
set<pair<int,int>> s;
for(int i = 0;i<bestid2;i++){
if((b/2 + 1 - (b-bestid)) <= 0){
continue;
}
s.insert({-(b/2 + 1 - (b-bestid)),i});
}
for(int i = 0;i<bestid && s.size();i++){
vector<pair<int,int>> use;
while(s.size() && use.size() < num){
use.push_back(*s.begin());
s.erase(s.begin());
}
for(auto u:use){
u.first++;
res[u.second][i] = '+';
if(u.first)
s.insert(u);
}
}
cout << ans << '\n';
for(int i = 0;i<a;i++){
for(int j = 0;j<b;j++){
cout << res[i][j] << ' ';
}
cout << '\n';
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#ifdef Local
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif
int t=1;
cin>>t;
while(t--){
solve();
}
#ifdef Local
cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
#endif
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |