Submission #991974


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)
#define all(c) (c).begin(), (c).end()
#define zero(a) memset(a, 0, sizeof a)
#define minus(a) memset(a, -1, sizeof a)
#define watch(a) { cout << #a << " = " << a << endl; }
template<class T1, class T2> inline bool minimize(T1 &a, T2 b) { return b < a && (a = b, 1); }
template<class T1, class T2> inline bool maximize(T1 &a, T2 b) { return a < b && (a = b, 1); }

typedef long long ll;
int const inf = 1<<29;

int main() {

  ll N; cin >> N;

  ll XX = 1e15;

  rep(i, N) {
    ll ok = 0;  // compare(ok) is always true
    ll ng = N + 1;    // compare(ng) is always false

    auto compare = [&](ll X)
      -> pair<ll, ll>
    {
      return {X, N - (1 + X) * (2 + X) / 2LL >= 0LL};
    };
    
    while(abs(ok-ng) > 1) { // ng極限の隣がokとなるまで
      ll mid = (ok + ng) / 2;
      auto r = compare(mid);
      if(r.second) {
        ok = mid;
        XX = r.first;
      } else {
        ng = mid;
      }
//      (compare(mid) ? ok : ng) = mid;
    }

    rep(i, XX) {
      cout << i + 1 << endl;
    }
    cout << ok << endl;

  }
  
  return 0;
}

Submission Info

Submission Time
Task B - Exactly N points
User motxx
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1241 Byte
Status WA
Exec Time 2102 ms
Memory 2688 KB

Judge Result

Set Name sample dataset1 dataset2
Score / Max Score 0 / 0 0 / 200 0 / 100
Status
WA × 3
WA × 13
WA × 13
TLE × 8
Set Name Test Cases
sample sample-01.txt, sample-02.txt, sample-03.txt
dataset1 sample-01.txt, sample-02.txt, sample-03.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt
dataset2 sample-01.txt, sample-02.txt, sample-03.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt, 01-08.txt, 01-09.txt, 01-10.txt, 02-01.txt, 02-02.txt, 02-03.txt, 02-04.txt, 02-05.txt, 02-06.txt, 02-07.txt, 02-08.txt
Case Name Status Exec Time Memory
01-01.txt WA 3 ms 256 KB
01-02.txt WA 3 ms 256 KB
01-03.txt WA 3 ms 256 KB
01-04.txt WA 5 ms 256 KB
01-05.txt WA 12 ms 256 KB
01-06.txt WA 80 ms 256 KB
01-07.txt WA 181 ms 384 KB
01-08.txt WA 179 ms 384 KB
01-09.txt WA 182 ms 384 KB
01-10.txt WA 180 ms 384 KB
02-01.txt TLE 2102 ms 2560 KB
02-02.txt TLE 2102 ms 2688 KB
02-03.txt TLE 2102 ms 2688 KB
02-04.txt TLE 2102 ms 2560 KB
02-05.txt TLE 2102 ms 2560 KB
02-06.txt TLE 2102 ms 2432 KB
02-07.txt TLE 2102 ms 2304 KB
02-08.txt TLE 2102 ms 2560 KB
sample-01.txt WA 3 ms 256 KB
sample-02.txt WA 3 ms 256 KB
sample-03.txt WA 3 ms 256 KB