Submission #992927


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 ok = N;  // compare(ok) is always true
  ll ng = 0;    // compare(ng) is always false

  auto compare = [&](ll X) {
    // X = max in S
    ll Y = N - X; // 和で作るべき値
    // X 未満の数字を使って、Yを作ることが出来るか
    return (X - 1) * X / 2 >= Y;
//    return false;
  };
  
  while(abs(ok-ng) > 1) { // ng極限の隣がokとなるまで
    ll mid = (ok + ng) / 2LL;
    (compare(mid) ? ok : ng) = mid;
  }

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

  cout << N - 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 1153 Byte
Status WA
Exec Time 2102 ms
Memory 3712 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 2 ms 256 KB
01-02.txt WA 2 ms 256 KB
01-03.txt WA 2 ms 256 KB
01-04.txt WA 2 ms 256 KB
01-05.txt WA 3 ms 256 KB
01-06.txt WA 4 ms 256 KB
01-07.txt WA 6 ms 256 KB
01-08.txt WA 6 ms 256 KB
01-09.txt WA 6 ms 256 KB
01-10.txt WA 6 ms 256 KB
02-01.txt TLE 2102 ms 3584 KB
02-02.txt TLE 2102 ms 3584 KB
02-03.txt TLE 2102 ms 3584 KB
02-04.txt TLE 2102 ms 3584 KB
02-05.txt TLE 2102 ms 3712 KB
02-06.txt TLE 2102 ms 3584 KB
02-07.txt TLE 2102 ms 3584 KB
02-08.txt TLE 2102 ms 3584 KB
sample-01.txt WA 2 ms 256 KB
sample-02.txt WA 2 ms 256 KB
sample-03.txt WA 2 ms 256 KB