fork download
  1. // your code goes here
  2. #include <iostream>
  3. #include <algorithm>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. string s, t;
  10. cin >> s >> t;
  11. cout << max(abs(s[0] - t[0]), abs(s[1] - t[1])) << endl;
  12. while (s != t)
  13. {
  14. if (s[0] < t[0])
  15. {
  16. cout << "R";
  17. s[0] += 1;
  18. }
  19. else if (s[0] > t[0])
  20. {
  21. cout << "L";
  22. s[0] -= 1;
  23. }
  24.  
  25. if (s[1] < t[1])
  26. {
  27. cout << "U";
  28. s[1] += 1;
  29. }
  30. else if (s[1] > t[1])
  31. {
  32. cout << "D";
  33. s[1] -= 1;
  34. }
  35.  
  36. cout << endl;
  37. }
  38. return 0;
  39. }
Success #stdin #stdout 0.01s 5296KB
stdin
a1
h8
stdout
7
RU
RU
RU
RU
RU
RU
RU