| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 602349 | Ozy | Red-blue table (IZhO19_stones) | C++17 | 35 ms | 2252 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for (int i = (a); i <= (b); i++)
#define repa(i,a,b) for (int i = (a); i >= (b); i--)
#define lli long long int
#define debug(a) cout << #a << " = " << a << endl
#define debugsl(a) cout << #a << " = " << a << ", "
#define MAX 1000
lli n,m,t,mejor,lim,f,c,b,a,ini,todo;
pair<lli,lli> cant;
char res[MAX+2][MAX+2];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> t;
rep(i,1,t) {
cin >> n >> m;
mejor = 0;
f = n / 2;
f++;
c = m / 2;
c++;
lim = n*m;
repa(i,n,0) {
repa(j,m,0) {
a = i*c;
a += j*f;
a += (n-i)*(m-j);
b = i + j;
if (a > lim) continue;
if (b <= mejor) break;
mejor = b;
cant = {i,j};
}
}
rep(i,1,n) {
rep(j,1,m) res[i][j] = '-';
}
ini = 1;
c -= m - cant.second;
rep(i,1,cant.first) {
rep(j,1,c) {
res[i][ini] = '+';
ini++;
if (ini > cant.second) ini = 1;
}
rep(j,cant.second+1,m) res[i][j] = '+';
}
cout << mejor << "\n";
rep(i,1,n) {
rep(j,1,m) cout << res[i][j];
cout << "\n";
}
}
}
| # | 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... | ||||
