Блог пользователя code_fille

Автор code_fille, история, 9 лет назад, По-английски

Given a number n, how to perform atmost k swap operations on number's digits to get the largest number. Ex- n=7899, k=2 ans=9987

  • Проголосовать: нравится
  • -4
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

do you mean if number is say 12345 and swaps = 2 , then find largest number ? your question format is very bad

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by code_fille (previous revision, new revision, compare).

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Doesn't it look like bruteforce? I mean the for n <= 10^18, and k small enough (does big K even make sense?)