Submission #1671007


Source Code Expand

// Copyright (C) 2017 Sayutin Dmitry.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; version 3

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program; If not, see <http://www.gnu.org/licenses/>.

#include <bits/stdc++.h>

using namespace std;

// solve problem when a != 0.
string solve(int a, int b, int c) {
    if (b == 0 and c == 0) {
        // it is clear, that answer is 'aaa...'.
        string res = "";
        for (int t = 0; t != a; ++t)
            res += 'a';
        return res;
    }

    // lets build our cyclical string.
    // we have (a) parts equal to 'a', and b + c other parts.
    // clearly, resulting cyclical string has substring of num=ceil(a/(b+c)) symbols 'a'.
    // 
    // if we want to minimize answer, than we shouldn't make it any larger (since it will be start of the minimal cyclical shift)
    // so we will have parts of length num and num-1.
    int num = (a + (b + c - 1)) / (b + c);
    int cnt_short = num * (b + c) - a; // how much parts of "num - 1"

    string tmp = "";
    for (int i = 0; i != num - 1; ++i)
        tmp += 'a';
        
    vector<string> parts;
    for (int i = 0; i != (b + c - cnt_short); ++i)
        parts.push_back(tmp + 'a'); // put long parts of num "a"

    for (int i = 0; i != cnt_short; ++i)
        parts.push_back(tmp); // put short parts of (num - 1) "a".

    // let's distribute B's and C's.
    //
    // We can notice, that minimal cyclical shift will start with num "a"s.
    // So it is always better to put C's to "long" parts, they are conveniently at the beginning of parts
    // array.
    
    for (int i = 0; i != c; ++i)
        parts[i] += 'c';
    for (int i = 0; i != b; ++i)
        parts[c + i] += 'b';

    // Now we want to put all parts together to minimize answer, and we are sure,
    // that the answer will be smaller than possible, if we try to split parts.

    // funny thing: there are no more, than 3 different types of parts, because
    // part uniquely defined by whether it has (num) or (num - 1) A's, and whether it has B or C at the end.
    // but it is not possible for types (num, B) and (num - 1, C) to exist together.

    // so count number of each and call recursion.
    sort(parts.begin(), parts.end());
    vector<string> cparts = parts;
    cparts.resize(std::unique(cparts.begin(), cparts.end()) - cparts.begin());

    while (cparts.size() < 3)
        cparts.push_back("");

    assert(cparts.size() == 3);
    string zzans = solve(std::count(parts.begin(), parts.end(), cparts[0]),
                         std::count(parts.begin(), parts.end(), cparts[1]),
                         std::count(parts.begin(), parts.end(), cparts[2]));

    string ans = "";
    for (char ch: zzans)
        ans += cparts[ch - 'a'];

    return ans;
}

// Time: T(x, y, z) = (x + y + z) + T(a, b, c), where a + b + c = x.
// since X in T(x, y, z) is decreasing in recursion, there are O(N) levels and each is O(N) => O(N^2)

// (actually implementation above is O(N^2 log) due to sort, but one can write without it).

int main() {
    int a, b, c;
    cin >> a >> b >> c;
    
    // remap 'a', 'b', 'c' in such way, that
    // num of 'a' is not zeros.
    map<char, char> back;
    if (a == 0 and b == 0) {
        back['a'] = 'c';
        a = c;
        b = 0;
        c = 0;
    } else if (a == 0) {
        back['a'] = 'b';
        back['b'] = 'c';
        a = b;
        b = c;
        c = 0;
    } else {
        back['a'] = 'a';
        back['b'] = 'b';
        back['c'] = 'c';
    }

    // solve problem when a != 0.
    string ans = solve(a, b, c);
    for (int i = 0; i != int(ans.size()); ++i)
        cout << back[ans[i]];
    cout << "\n";
    
    return 0;
}

Submission Info

Submission Time
Task F - Largest Smallest Cyclic Shift
User cdkrot
Language C++14 (GCC 5.4.1)
Score 1600
Code Size 4238 Byte
Status AC
Exec Time 2 ms
Memory 384 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1600 / 1600
Status
AC × 2
AC × 114
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, 033.txt, 034.txt, 035.txt, 036.txt, 037.txt, 038.txt, 039.txt, 040.txt, 041.txt, 042.txt, 043.txt, 044.txt, 045.txt, 046.txt, 047.txt, 048.txt, 049.txt, 050.txt, 051.txt, 052.txt, 053.txt, 054.txt, 055.txt, 056.txt, 057.txt, 058.txt, 059.txt, 060.txt, 061.txt, 062.txt, 063.txt, 064.txt, 065.txt, 066.txt, 067.txt, 068.txt, 069.txt, 070.txt, 071.txt, 072.txt, 073.txt, 074.txt, 075.txt, 076.txt, 077.txt, 078.txt, 079.txt, 080.txt, 081.txt, 082.txt, 083.txt, 084.txt, 085.txt, 086.txt, 087.txt, 088.txt, 089.txt, 090.txt, 091.txt, 092.txt, 093.txt, 094.txt, 095.txt, 096.txt, 097.txt, 098.txt, 099.txt, 100.txt, 101.txt, 102.txt, 103.txt, 104.txt, 105.txt, 106.txt, 107.txt, 108.txt, 109.txt, 110.txt, 111.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 1 ms 256 KB
001.txt AC 1 ms 256 KB
002.txt AC 1 ms 256 KB
003.txt AC 1 ms 256 KB
004.txt AC 1 ms 256 KB
005.txt AC 1 ms 256 KB
006.txt AC 1 ms 256 KB
007.txt AC 1 ms 256 KB
008.txt AC 1 ms 256 KB
009.txt AC 1 ms 256 KB
010.txt AC 1 ms 256 KB
011.txt AC 1 ms 256 KB
012.txt AC 1 ms 256 KB
013.txt AC 1 ms 256 KB
014.txt AC 1 ms 256 KB
015.txt AC 1 ms 256 KB
016.txt AC 1 ms 256 KB
017.txt AC 1 ms 256 KB
018.txt AC 1 ms 256 KB
019.txt AC 1 ms 256 KB
020.txt AC 1 ms 256 KB
021.txt AC 1 ms 256 KB
022.txt AC 1 ms 256 KB
023.txt AC 1 ms 256 KB
024.txt AC 1 ms 256 KB
025.txt AC 1 ms 256 KB
026.txt AC 1 ms 256 KB
027.txt AC 1 ms 256 KB
028.txt AC 1 ms 256 KB
029.txt AC 1 ms 256 KB
030.txt AC 1 ms 256 KB
031.txt AC 1 ms 256 KB
032.txt AC 1 ms 256 KB
033.txt AC 1 ms 256 KB
034.txt AC 1 ms 256 KB
035.txt AC 1 ms 256 KB
036.txt AC 1 ms 256 KB
037.txt AC 1 ms 256 KB
038.txt AC 1 ms 256 KB
039.txt AC 1 ms 256 KB
040.txt AC 1 ms 256 KB
041.txt AC 1 ms 256 KB
042.txt AC 1 ms 256 KB
043.txt AC 1 ms 256 KB
044.txt AC 1 ms 256 KB
045.txt AC 1 ms 256 KB
046.txt AC 1 ms 256 KB
047.txt AC 1 ms 256 KB
048.txt AC 1 ms 256 KB
049.txt AC 1 ms 256 KB
050.txt AC 1 ms 256 KB
051.txt AC 1 ms 256 KB
052.txt AC 1 ms 256 KB
053.txt AC 1 ms 256 KB
054.txt AC 1 ms 256 KB
055.txt AC 1 ms 256 KB
056.txt AC 1 ms 256 KB
057.txt AC 1 ms 256 KB
058.txt AC 1 ms 256 KB
059.txt AC 1 ms 256 KB
060.txt AC 1 ms 256 KB
061.txt AC 1 ms 256 KB
062.txt AC 1 ms 256 KB
063.txt AC 1 ms 256 KB
064.txt AC 1 ms 256 KB
065.txt AC 1 ms 256 KB
066.txt AC 1 ms 256 KB
067.txt AC 1 ms 256 KB
068.txt AC 1 ms 256 KB
069.txt AC 1 ms 256 KB
070.txt AC 1 ms 256 KB
071.txt AC 1 ms 256 KB
072.txt AC 1 ms 256 KB
073.txt AC 1 ms 256 KB
074.txt AC 1 ms 256 KB
075.txt AC 1 ms 256 KB
076.txt AC 1 ms 256 KB
077.txt AC 1 ms 256 KB
078.txt AC 1 ms 256 KB
079.txt AC 1 ms 256 KB
080.txt AC 1 ms 256 KB
081.txt AC 1 ms 256 KB
082.txt AC 1 ms 256 KB
083.txt AC 1 ms 256 KB
084.txt AC 1 ms 384 KB
085.txt AC 1 ms 256 KB
086.txt AC 2 ms 384 KB
087.txt AC 1 ms 256 KB
088.txt AC 1 ms 256 KB
089.txt AC 1 ms 256 KB
090.txt AC 1 ms 256 KB
091.txt AC 1 ms 256 KB
092.txt AC 1 ms 256 KB
093.txt AC 1 ms 256 KB
094.txt AC 1 ms 256 KB
095.txt AC 1 ms 256 KB
096.txt AC 1 ms 256 KB
097.txt AC 1 ms 256 KB
098.txt AC 1 ms 256 KB
099.txt AC 1 ms 256 KB
100.txt AC 1 ms 256 KB
101.txt AC 1 ms 256 KB
102.txt AC 1 ms 256 KB
103.txt AC 1 ms 256 KB
104.txt AC 1 ms 256 KB
105.txt AC 1 ms 256 KB
106.txt AC 1 ms 256 KB
107.txt AC 1 ms 256 KB
108.txt AC 1 ms 256 KB
109.txt AC 1 ms 256 KB
110.txt AC 1 ms 256 KB
111.txt AC 1 ms 256 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB