fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX_SIZE = 10;
  5.  
  6. int main() {
  7. int n, m, q, mt[MAX_SIZE + 1][MAX_SIZE + 1];
  8. cin >> n >> m >> q;
  9. for (int line = 1; line <= n; ++line) {
  10. for (int col = 1; col <= m; ++col) {
  11. cin >> mt[line][col];
  12. }
  13. }
  14. int k, i, j, u, v;
  15. for (int line = 1; line <= q; ++line) {
  16. cin >> k >> i >> j;
  17. if (k == 1) {
  18. int x;
  19. cin >> x;
  20. mt[i][j] = x;
  21. } else {
  22. int u, v;
  23. cin >> u >> v;
  24. mt[i][j] = mt[u][v];
  25. }
  26. }
  27. for (int line = 1; line <= n; ++line) {
  28. for (int col = 1; col <= m; ++col) {
  29. cout << mt[line][col] << " ";
  30. }
  31. cout << "\n";
  32. }
  33. return 0;
  34. }
Success #stdin #stdout 0.01s 5288KB
stdin
1 1 1

7

1 1 1 18
	 
18
stdout
18