일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 다익스트라
- Two Points
- 스토어드 프로시저
- binary search
- Dijkstra
- 이진탐색
- SQL
- Hash
- Stored Procedure
- DP
- 그래프
- MYSQL
- String
- Brute Force
- union find
- Trie
- two pointer
Archives
- Today
- Total
codingfarm
LATEX 자동 행렬 생성기 본문
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
|
#include<iostream>
#include<string>
#include<vector>
using namespace std;
int main(void) {
int m, n;
cin >> m >> n;
vector<vector<int>> mat;
mat.assign(m, vector<int>(n, 0));
for (int row = 0; row < m; row++)
for (int col = 0; col < n; col++)
cin >> mat[row][col];
string ret;
ret = "\\begin{bmatrix}";
for (int row = 0; row < m; row++) {
for (int col = 0; col < n; col++) {
ret += to_string(mat[row][col]);
if (col != n - 1)
ret += " &";
}
if (row != m - 1)
ret += " \\\\";
}
ret += "\\end{bmatrix}";
cout << ret << endl;
return 0;
}
|
cs |
사용 예
'그리고 > 기타' 카테고리의 다른 글
레이싱휠 만들기 (0) | 2021.02.05 |
---|---|
듀랑고 : 절차적 생성 생태계 (0) | 2021.01.21 |
2020 상반기 공채 삼성 sds pro채용 후기 (66) | 2020.08.04 |
Latex 작성 팁 (0) | 2020.02.29 |
2020년 동계 삼성 sds 알고리즘 특강 & 합격 후기 (7) | 2020.02.28 |
Comments