Advertisement
milon34

dp_solution_print

Jan 15th, 2023 (edited)
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.74 KB | None | 0 0
  1. problem link::https://codeforces.com/contest/1341/problem/D  (Nastya and Scoreboard)
  2.  
  3. #include <bits/stdc++.h>
  4. using namespace std;
  5. #define ll long long int
  6. const int mx = 2e3 + 5;
  7. int n, k;
  8. int dp[mx][mx];
  9. string s[mx];
  10. string dig[] = {"1110111", "0010010", "1011101", "1011011", "0111010",
  11.                 "1101011", "1101111", "1010010", "1111111", "1111011"};
  12. struct direction {
  13.   int i, c, ans;
  14.   direction(){};
  15.   direction(int i, int c, int ans) : i(i), c(c), ans(ans){};
  16. } dir[mx][mx];
  17.  
  18. int zero_to_one(string s1, string s2) {
  19.   int cnt = 0;
  20.   for (int i = 0; i < s1.size(); i++) {
  21.     if (s1[i] == '0' && s2[i] == '1') {
  22.       return -1;
  23.     }
  24.     if (s1[i] == '1' && s2[i] == '0') {
  25.       cnt++;
  26.     }
  27.   }
  28.   return cnt;
  29. }
  30. int solve(int i, int cost) {
  31.   if (i == n) {
  32.     return k == cost;
  33.   }
  34.   if (dp[i][cost] != -1) {
  35.     return dp[i][cost];
  36.   }
  37.   int res = 0;
  38.   for (int m = 9; m >= 0; m--) {
  39.     string s1 = dig[m];
  40.     int check = zero_to_one(s1, s[i]);
  41.     if (check == -1) {
  42.       continue;
  43.     }
  44.     if (cost + check <= k) {
  45.       int st = solve(i + 1, cost + check);
  46.       if (st == 1) {
  47.         res = 1;
  48.         dir[i][cost] = direction(i + 1, cost + check, m);
  49.       }
  50.     }
  51.   }
  52.   return dp[i][cost] = res;
  53. }
  54. void print(int i, int cost) {
  55.   if (dir[i][cost].ans == -1) {
  56.     return;
  57.   }
  58.   cout << dir[i][cost].ans;
  59.   print(dir[i][cost].i, dir[i][cost].c);
  60. }
  61. int main() {
  62.   ios_base::sync_with_stdio(false);
  63.   cin.tie(0);
  64.   cout.tie(0);
  65.   memset(dp, -1, sizeof(dp));
  66.   cin >> n >> k;
  67.   for (int i = 0; i < n; i++) {
  68.     cin >> s[i];
  69.   }
  70.   memset(dir, -1, sizeof(dir));
  71.   int val = solve(0, 0);
  72.   if (val == 0) {
  73.     cout << -1 << "\n";
  74.   } else {
  75.     print(0, 0);
  76.   }
  77.   return 0;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement