Submission #1006671


Source Code Expand

#define DEBUG false

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <list>
#include <algorithm>
#include <string>
#include <cstring>

using namespace std;

// Returns 1 if the i-th bit of x is set, 0 otherwise.
#define BIT_SET(x, i) (((x) & (1<<(i))) != 0)
// Sets the i-th bit of x to 1
#define SET_BIT(x, i) ((x) | (1<<(i)))
// Sets the i-th bit of x to 0
#define UNSET_BIT(x, i) ((x) & ~(1<<(i)))
// Logs a debug message
#if DEBUG
#define LOG(e) (std::cout << (e) << std::endl)
#else
#define LOG(e) 
#endif
// Log a collection
#define LOG_COLLECTION(c) for (int i=0; i<c.size(); i++) { LOG(c[i]); }
// Log a collection using type iterator
#define LOG_COLLECTION_ITERATOR(t,c) for (t::iterator i=c.begin(); i!=c.end(); i++) { LOG(*(i)); }
// Log a collection using type iterator
#define LOG_COLLECTION_ITEM_PROPERTY(t,c,propery0) for (t::iterator i=c.begin(); i!=c.end(); i++) { LOG(i->property0); }
// Log a collection using type iterator
#define LOG_COLLECTION_ITEM_PROPERTY2(t,c,property0,property1) for (t::iterator i=c.begin(); i!=c.end(); i++) { LOG(i->property0); LOG(i->property1); }
// Log an array
#define LOG_ARRAY(a,l) for (int i=0; i<l; i++) { LOG(a[i]); }
// types
#define int64 long long
#define uint64 unsigned long long

const char* PATTERN = "FESTIVAL";
const int CHUNK = 1 << 8;

class Node {
    public:
        int index;
        int64 count;

        Node(int index, int64 count) : index(index), count(count) {}
};

class Task {
    public:
        void solve(istream& in, ostream& out) {
            int64 K;
            in >> K;
            list<Node> ans;
            solve(K, strlen(PATTERN) - 1, ans);
            for (list<Node>::iterator i = ans.begin(); i != ans.end(); i++)
                for (int j = 0; j < i->count; j++)
                    out << PATTERN[i->index];
            out << endl;
        }
    private:
        void solve(int64 K, int index, list<Node>& ans) {
            if (index == 0)
                ans.emplace_back(Node(0, K));
            else {
                int64 r = K % CHUNK;
                int64 q = K / CHUNK;
                if (q == 0) {
                    for (int j = 0; j < index; j++)
                        ans.emplace_back(Node(j, 1));
                    ans.emplace_back(Node(index, r));
                }
                else {
                    if (r == 0) {
                        r = CHUNK;
                        q--;
                    }
                    solve(q, index - 1, ans);
                    list<Node>::iterator insert = find(index - 1, ans);
                    insert->count--;
                    ans.emplace(insert, Node(index - 1, 1));
                    ans.emplace(insert, Node(index, r));
                    if (q > 0)
                        ans.emplace_back(Node(index, CHUNK));
                }
            }
        }

        list<Node>::iterator find(int index, list<Node>& ans) {
            for (list<Node>::iterator i = ans.begin(); i != ans.end(); i++)
                if (i->index == index)
                    return i;
            return ans.end();
        }
} task;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    istream& in(cin);
    ostream& out(cout);
    task.solve(in, out);
    return 0;
}

Submission Info

Submission Time
Task G - FESTIVAL
User chal
Language C++14 (GCC 5.4.1)
Score 1000
Code Size 3388 Byte
Status AC
Exec Time 3 ms
Memory 384 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1000 / 1000
Status
AC × 2
AC × 56
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, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 3 ms 256 KB
001.txt AC 3 ms 256 KB
002.txt AC 3 ms 256 KB
003.txt AC 3 ms 256 KB
004.txt AC 3 ms 256 KB
005.txt AC 3 ms 256 KB
006.txt AC 3 ms 256 KB
007.txt AC 3 ms 256 KB
008.txt AC 3 ms 256 KB
009.txt AC 3 ms 256 KB
010.txt AC 3 ms 256 KB
011.txt AC 3 ms 256 KB
012.txt AC 3 ms 256 KB
013.txt AC 3 ms 256 KB
014.txt AC 3 ms 384 KB
015.txt AC 3 ms 256 KB
016.txt AC 3 ms 256 KB
017.txt AC 3 ms 256 KB
018.txt AC 3 ms 256 KB
019.txt AC 3 ms 256 KB
020.txt AC 3 ms 256 KB
021.txt AC 3 ms 256 KB
022.txt AC 3 ms 256 KB
023.txt AC 3 ms 256 KB
024.txt AC 3 ms 256 KB
025.txt AC 3 ms 256 KB
026.txt AC 3 ms 256 KB
027.txt AC 3 ms 256 KB
028.txt AC 3 ms 256 KB
029.txt AC 3 ms 256 KB
030.txt AC 3 ms 256 KB
031.txt AC 3 ms 256 KB
032.txt AC 3 ms 256 KB
033.txt AC 3 ms 256 KB
034.txt AC 3 ms 256 KB
035.txt AC 3 ms 256 KB
036.txt AC 3 ms 256 KB
037.txt AC 3 ms 384 KB
038.txt AC 3 ms 256 KB
039.txt AC 3 ms 256 KB
040.txt AC 3 ms 256 KB
041.txt AC 3 ms 256 KB
042.txt AC 3 ms 256 KB
043.txt AC 3 ms 256 KB
044.txt AC 3 ms 256 KB
045.txt AC 3 ms 256 KB
046.txt AC 3 ms 256 KB
047.txt AC 3 ms 256 KB
048.txt AC 3 ms 256 KB
049.txt AC 3 ms 256 KB
050.txt AC 3 ms 256 KB
051.txt AC 3 ms 256 KB
052.txt AC 3 ms 256 KB
053.txt AC 3 ms 256 KB
example0.txt AC 3 ms 256 KB
example1.txt AC 3 ms 256 KB