結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | ramia777 |
提出日時 | 2022-12-16 11:30:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 981 ms / 2,000 ms |
コード長 | 3,317 bytes |
コンパイル時間 | 971 ms |
コンパイル使用メモリ | 97,052 KB |
実行使用メモリ | 7,120 KB |
最終ジャッジ日時 | 2024-11-15 16:49:18 |
合計ジャッジ時間 | 21,982 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 960 ms
6,864 KB |
testcase_01 | AC | 963 ms
6,820 KB |
testcase_02 | AC | 959 ms
6,820 KB |
testcase_03 | AC | 981 ms
6,816 KB |
testcase_04 | AC | 977 ms
6,820 KB |
testcase_05 | AC | 174 ms
6,820 KB |
testcase_06 | AC | 544 ms
6,816 KB |
testcase_07 | AC | 555 ms
6,820 KB |
testcase_08 | AC | 592 ms
6,820 KB |
testcase_09 | AC | 360 ms
6,820 KB |
testcase_10 | AC | 491 ms
6,816 KB |
testcase_11 | AC | 850 ms
7,120 KB |
testcase_12 | AC | 596 ms
6,820 KB |
testcase_13 | AC | 278 ms
6,816 KB |
testcase_14 | AC | 595 ms
6,816 KB |
testcase_15 | AC | 565 ms
6,816 KB |
testcase_16 | AC | 657 ms
6,816 KB |
testcase_17 | AC | 619 ms
6,820 KB |
testcase_18 | AC | 752 ms
6,868 KB |
testcase_19 | AC | 82 ms
6,816 KB |
testcase_20 | AC | 706 ms
6,816 KB |
testcase_21 | AC | 310 ms
6,820 KB |
testcase_22 | AC | 618 ms
6,820 KB |
testcase_23 | AC | 735 ms
6,816 KB |
testcase_24 | AC | 848 ms
6,864 KB |
ソースコード
// yukicodr // No.2154 //二次元可変配列 //vector <vector <int>> mass; //vector <vector <int>> memo; //vector <int> memo; //#include "stdafx.h" #include <iostream> #include <vector> #include <list>//list #include <queue> //queue #include <set> //連想コンテナ(要素が自動でソートされる)、要素1つ(Key)、keyの重複ない、O(logN) #include <map> //連想コンテナ(要素が自動でソートされる)、要素2つ(Key,data)、keyの重複ない、dataは重複あり、O(logN) #include <unordered_set> //hash、O(1) #include <unordered_map> //hash、O(1) #include <algorithm> #include <iomanip> #include <cstring> #include <string> #include <climits> //#include <bits/stdc++.h> using namespace std; #define FOR(x,to) for(x=0;x<to;x++) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) #define FMAX(a,b) ((a)>(b)?(a):(b)) #define FMIN(a,b) ((a)<(b)?(a):(b)) #define FCEIL(a,b) ((a)+(b)-1)/(b) typedef unsigned long long ULL; typedef signed long long SLL; queue<int> _queue; //昇順 int compare_up(const int * a, const int *b) { if (*a > *b) return (1); else if (*a < *b) return (-1); return (0); } //降順 int compare_down(const int * a, const int *b) { if (*a > *b) return (-1); else if (*a < *b) return (1); return (0); } int par[3005 * 3005]; //ルートの番号 int _rank[3005 * 3005]; //木の高さ int flag[3005 * 3005]; // 経路圧縮 // 直列で連結しているような木はすべて直接ルートにつなぐようにする int _find(int x) { if (x == par[x]) { //cout << "x=" << x << endl; return x; } else { int a; //cout << "in->" << endl; a = _find(par[x]); //cout << "<-out" << endl; //cout << "x=" << x << ",par[x]=" << par[x] << ",a=" << a << endl; //ルートを更新(圧縮) par[x] = a; //新しいルートを返す return par[x]; } } //xとyが同じ集合かどうか bool same(int x, int y) { //ルートが同じかどうかを判定すればOK return _find(x) == _find(y); } //初期化 //はじめは全部の頂点がルート void init(int n) { for (int i = 0; i < n; i++) { par[i] = i; _rank[i] = 0; } } // x と y を同じツリーにする void _union(int x, int y) { int root_x; int root_y; root_x = _find(x); root_y = _find(y); if (root_x == root_y) return; //最初から同じルートならすぐ返す //木の高さが高いほうの木の根に、低いほうの根をつなげる if (_rank[root_x] < _rank[root_y]) { // x<yのとき par[root_x] = root_y; } else { // x>y または x==y のとき // yをxにつなげる par[root_y] = root_x; // 高さが同じときだけ 高さを変える必要がある if (_rank[root_x] == _rank[root_y]) _rank[root_x]++; // つなげられた木の高さを1つふやす(全体の木の高さは1増える) } } int solve(int i, ULL index_flag) { return 0; } int L, R; int A[500005]; int main() { int N, M; cin >> N; cin >> M; for (int i=1;i<=M;i++) { cin >> L; cin >> R; A[L] += 1; A[R-1] -= 1; } /* for (int i = N; i >= 1; i--) { cout << A[i] << endl; }*/ cout << A[N] << endl; for (int i = N-1; i >= 1; i--) { A[i] += A[i + 1]; cout << A[i] << endl; } //getchar(); return 0; }