#include <bits/stdc++.h>
//#include "grader.h"
using namespace std;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second
int get_log(ll k){
int cnt = 0;
while(k > 0){
cnt++;
k /= 2;
}
return cnt;
}
ll check(vector<vector<char>> &grid, int n, int m){
ll r[1000][1000], d[1000][1000];
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
r[i][j] = d[i][j] = 0;
}
}
r[0][0] = 1;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
if(i == n-1 && j == m-1)
continue;
if(grid[i][j] == '.'){
r[i][j+1] += r[i][j];
d[i+1][j] += d[i][j];
} else if(grid[i][j] == 'X'){
r[i][j+1] += r[i][j] + d[i][j];
d[i+1][j] += r[i][j] + d[i][j];
} else if(grid[i][j] == 'r'){
r[i][j+1] += r[i][j] + d[i][j];
} else {
d[i+1][j] += r[i][j] + d[i][j];
}
}
}
ll ans = r[n-1][m-1] + d[n-1][m-1];
/*for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << setw(8) << r[i][j] << ' ' << d[i][j];
}
cout << '\n';
}*/
return ans;
}
void solve(){
ll k;
cin >> k;
int n = get_log(k);
vector<vector<char>> a(n+1, vector<char>(n+1, '.'));
for(int i = 0; i < n-1; i++){
a[i][i] = 'X';
a[i+1][i] = ((1LL << i) & k ? 'X' : 'r');
a[i][i+1] = 'd';
}
for(int i = 0; i <= n; i++){
a[n][i] = 'r';
a[i][n] = 'd';
}
a[n][n] = '.';
cout << n+1 << ' ' << n+1 << '\n';
for(int i = 0; i <= n; i++){
for(int j = 0; j <= n; j++)
cout << a[i][j];
cout << '\n';
}
//cout << check(a, n+1, n+1) << '\n';
}
int main(){
//freopen("input.txt", "r", stdin);
//freopen("test.out", "w", stdout);
ios::sync_with_stdio(0); cin.tie(0);
int t = 1;
cin >> t;
while(t--){
solve();
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
The matrix does not generate the required number of Costins |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1078 ms |
39824 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |