結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | macle |
提出日時 | 2022-12-10 00:16:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 901 ms / 2,000 ms |
コード長 | 1,974 bytes |
コンパイル時間 | 1,458 ms |
コンパイル使用メモリ | 169,688 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-10-14 23:14:24 |
合計ジャッジ時間 | 20,755 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 901 ms
7,168 KB |
testcase_01 | AC | 871 ms
7,168 KB |
testcase_02 | AC | 889 ms
7,168 KB |
testcase_03 | AC | 894 ms
7,168 KB |
testcase_04 | AC | 886 ms
7,296 KB |
testcase_05 | AC | 155 ms
5,248 KB |
testcase_06 | AC | 498 ms
5,248 KB |
testcase_07 | AC | 514 ms
5,760 KB |
testcase_08 | AC | 548 ms
6,016 KB |
testcase_09 | AC | 326 ms
5,376 KB |
testcase_10 | AC | 444 ms
5,376 KB |
testcase_11 | AC | 773 ms
6,656 KB |
testcase_12 | AC | 526 ms
5,376 KB |
testcase_13 | AC | 251 ms
5,248 KB |
testcase_14 | AC | 556 ms
5,504 KB |
testcase_15 | AC | 534 ms
6,016 KB |
testcase_16 | AC | 596 ms
5,760 KB |
testcase_17 | AC | 568 ms
5,504 KB |
testcase_18 | AC | 682 ms
6,016 KB |
testcase_19 | AC | 77 ms
5,248 KB |
testcase_20 | AC | 660 ms
6,144 KB |
testcase_21 | AC | 298 ms
5,248 KB |
testcase_22 | AC | 575 ms
6,784 KB |
testcase_23 | AC | 688 ms
6,272 KB |
testcase_24 | AC | 766 ms
6,656 KB |
ソースコード
#include <bits/stdc++.h> // #include <atcoder/all> using namespace std; // using namespace atcoder; // const long long mod = 1e9 + 7; const long long mod = 998244353; const double PI = acos(-1); using ll = long long; using PII = pair<int, int>; using PLL = pair<long long, long long>; #define REP(i,n) for(int i=0, i##_len=(n); i<i##_len; ++i) #define rrep(i,a,b) for(int i=(a);i>(b);i--) #define rep(i,a,b) for(int i=(a);i<(b);i++) // begin() end() #define all(x) (x).begin(),(x).end() //出力系 #define print(x) cout << x << endl #define prints(x) cout << fixed << setprecision(12) << x << endl #define printc(x) cout << setw(6) << setfill('0') << x << endl; #define yes cout << "Yes" << endl #define YES cout << "YES" << endl #define no cout << "No" << endl #define NO cout << "NO" << endl //最大公約数 ll gcd(ll x, ll y) { return y ? gcd(y,x%y) : x;} // 最小公倍数 unsigned lcm(unsigned a, unsigned b){ return a / gcd(a, b) * b; } const int INF = 1000000000; const double DINF = 1LL<<60; const long long LINF = 1LL<<60; const int MAX = 510000; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } // Nは問題によって変更すること // vector<int>ind(N); // REP(i, N) ind[i]= i; //sort(all(ind), [&](int i, int j) {return x[i] < x[j];}); ll dy[4] = {0, 1, 0, -1}, dx[4] = {1, 0, -1, 0}; // ll dy[8] = {0, 1, 1, 1, 0, -1, -1, -1}, dx[8] = {1, 1, 0, -1, -1, -1, 0, 1}; // ACL segtree用 segtree<ll, op, e>seg(N)のように宣言 // ll op(ll a, ll b){ // return a + b; // } // ll e(){ // return 0LL; // } vector<vector<int>>G; int main() { int N, M; cin >> N >> M; vector<ll>V(N); REP(i, M){ ll l, r; cin >> l >> r; V[r - 1]++; V[l]--; } REP(i, N - 1) V[i + 1] += V[i]; rrep(i, N - 1, -1) cout << V[i] << endl; return 0; }