Submission #3117083


Source Code Expand

/**
 * File    : D.cpp
 * Author  : Kazune Takahashi
 * Created : 2018-9-1 21:31:09
 * Powered by Visual Studio Code
 */

#include <iostream>
#include <iomanip>   // << fixed << setprecision(xxx)
#include <algorithm> // do { } while ( next_permutation(A, A+xxx) ) ;
#include <vector>
#include <string> // to_string(nnn) // substr(m, n) // stoi(nnn)
#include <complex>
#include <tuple>
#include <queue>
#include <stack>
#include <map> // if (M.find(key) != M.end()) { }
#include <set>
#include <functional>
#include <random> // auto rd = bind(uniform_int_distribution<int>(0, 9), mt19937(19920725));
#include <chrono> // std::chrono::system_clock::time_point start_time, end_time;
// start = std::chrono::system_clock::now();
// double elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(end_time-start_time).count();
#include <cctype>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
using namespace std;

#define DEBUG 0 // change 0 -> 1 if we need debug.

typedef long long ll;

// const int dx[4] = {1, 0, -1, 0};
// const int dy[4] = {0, 1, 0, -1};

// const int C = 1e6+10;
// const ll M = 1000000007;

typedef tuple<int, int> path;

ll L;
int N;
vector<path> V[100];

void flush()
{
  int M = 0;
  for (auto i = 0; i < N; i++)
  {
    M += (int)V[i].size();
  }
  cout << N << " " << M << endl;
  for (auto i = 0; i < N; i++)
  {
    for (auto x : V[i])
    {
      cout << i + 1 << " " << get<0>(x) + 1 << " " << get<1>(x) << endl;
    }
  }
}

void add_edge(int x, int y, int c)
{
  V[x].push_back(path(y, c));
}

int main()
{
  cin >> L;
  N = 0;
  for (auto i = 0; i < 200; i++)
  {
    if ((L >> i) == 0)
    {
      N = i;
      break;
    }
  }
  assert(0 < N && N <= 20);
  int pow = 1;
  for (auto i = 0; i < N - 1; i++)
  {
    add_edge(i, i + 1, 0);
    add_edge(i, i + 1, pow);
    pow *= 2;
  }
  for (auto i = 0; i < N - 1; i++)
  {
    if ((L >> i) & 1)
    {
      int cost = L & (((1 << N) - 1) << (i + 1));
      add_edge(i, N - 1, cost);
    }
  }
  flush();
}

Submission Info

Submission Time
Task D - All Your Paths are Different Lengths
User kazunetakahashi
Language C++14 (GCC 5.4.1)
Score 700
Code Size 2118 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 700 / 700
Status
AC × 2
AC × 22
Set Name Test Cases
Sample s1.txt, s2.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt AC 1 ms 256 KB
02.txt AC 1 ms 256 KB
03.txt AC 1 ms 256 KB
04.txt AC 1 ms 256 KB
05.txt AC 1 ms 256 KB
06.txt AC 1 ms 256 KB
07.txt AC 1 ms 256 KB
08.txt AC 1 ms 256 KB
09.txt AC 1 ms 256 KB
10.txt AC 1 ms 256 KB
11.txt AC 1 ms 256 KB
12.txt AC 1 ms 256 KB
13.txt AC 1 ms 256 KB
14.txt AC 1 ms 256 KB
15.txt AC 1 ms 256 KB
16.txt AC 1 ms 256 KB
17.txt AC 1 ms 256 KB
18.txt AC 1 ms 256 KB
19.txt AC 1 ms 256 KB
20.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB