Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #pragma GCC optimize("unroll-loops")
  2. #pragma GCC optimize ("Ofast")
  3.  
  4.  
  5. #include <iostream>
  6. #include <vector>
  7. #include <algorithm>
  8. #include <map>
  9. #include <cmath>
  10. #include <iomanip>
  11. #include <set>
  12.  
  13. using namespace std;
  14.  
  15. string s;
  16.  
  17.  
  18. signed main() {
  19. ios_base::sync_with_stdio(false);
  20. cin.tie(0);
  21. cout.tie(0);
  22.  
  23. int n,m;
  24. cin >> n >> m;
  25. vector<vector<char>> vv(n);
  26. for(int i=0;i<n;i++){
  27. for(int j=0;j<m;j++){
  28. char tmp;
  29. cin >> tmp;
  30. vv[i].push_back(tmp);
  31. }
  32. }
  33.  
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement