結果
問題 | No.893 お客様を誘導せよ |
ユーザー | hotman78 |
提出日時 | 2019-09-27 21:33:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 18 ms / 2,000 ms |
コード長 | 3,297 bytes |
コンパイル時間 | 1,905 ms |
コンパイル使用メモリ | 181,708 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 20:52:46 |
合計ジャッジ時間 | 2,589 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 5 ms
6,940 KB |
testcase_03 | AC | 10 ms
6,944 KB |
testcase_04 | AC | 10 ms
6,944 KB |
testcase_05 | AC | 9 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 18 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp:62:19: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 62 | inline bool chmin(auto& s,const auto& t){bool res=s>t;s=min(s,t);return res;} | ^~~~ main.cpp:62:33: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 62 | inline bool chmin(auto& s,const auto& t){bool res=s>t;s=min(s,t);return res;} | ^~~~ main.cpp:63:19: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 63 | inline bool chmax(auto& s,const auto& t){bool res=s<t;s=max(s,t);return res;} | ^~~~ main.cpp:63:33: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 63 | inline bool chmax(auto& s,const auto& t){bool res=s<t;s=max(s,t);return res;} | ^~~~
ソースコード
#pragma GCC optimize("Ofast") #include<bits/stdc++.h> using namespace::std; struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init; // #include <boost/multiprecision/cpp_dec_float.hpp> // #include <boost/multiprecision/cpp_int.hpp> // #include <boost/numeric/interval.hpp> // #include <boost/numeric/interval/io.hpp> // #include <boost/intrusive/rbtree.hpp> // #include <boost/geometry.hpp> // #include <boost/geometry/geometries/linestring.hpp> // #include <boost/geometry/geometries/polygon.hpp> // #include <boost/geometry/geometries/point_xy.hpp> // #include<ext/pb_ds/assoc_container.hpp> // #include<ext/pb_ds/tree_policy.hpp> // #include<ext/pb_ds/tag_and_trait.hpp> // using namespace __gnu_pbds; // namespace mp = boost::multiprecision; // typedef mp::number<mp::cpp_dec_float<0>> cfloat; // typedef mp::cpp_int cint; typedef long long lint; typedef long long ll; typedef long double ldouble; typedef vector<lint> vec; typedef vector<vector<lint>> mat; typedef vector<vector<vector<lint>>> mat3; typedef vector<double> dvec; typedef vector<vector<double>> dmat; typedef vector<vector<vector<double>>> dmat3; typedef vector<string> svec; typedef vector<vector<string>> smat; typedef vector<vector<vector<string>>> smat3; typedef vector<pair<lint,lint>> pvec; typedef vector<vector<pair<lint,lint>>> pmat; typedef vector<vector<vector<pair<lint,lint>>>> pmat3; #define rep(i, n) for(lint i = 0; i < (lint)(n); i++) #define irep(i) for(lint i = 0;; i++) #define irep1(i) for(lint i = 1;; i++) #define irep2(i) for(lint i = 2;; i++) #define rrep(i, n) for(lint i = (lint)(n-1); i >-1; i--) #define rrepi(i,a,b) for(lint i = (lint)(b-1); i >a-1; i--) #define repi(i,a,b) for(lint i=lint(a);i<lint(b);i++) #define rep2(i,a,b,c) for(lint i=lint(a);i>lint(b);i+=c) #define all(x) (x).begin(),(x).end() #define PI 3.141592653589793 #define dist(x1,y1,x2,y2) (pow(pow(x2-x1,2)+pow(y2-y1,2),0.5)) #define output(v) do{bool f=0;for(auto i:v){cout<<(f?" ":"");if(i>INF/2)cout<<"INF";else cout<<i;f=1;}cout<<"\n";}while(0) #define output2(v) for(auto j:v)output(j); #define _output(v) do{bool f=0;rep(i,v.size()){cout<<(f?" ":"");if(v[i]>INF/2)cout<<"INF";else cout<<v[i];f=1;}cout<<"\n";}while(0) #define _output2(v) rep(j,v.size()){_output(v[j]);} #define input(a,n) lint n;cin>>n;vector<lint>a(n);rep(i,n)cin>>a[i]; #define SUM(v) accumulate(all(v),0LL) #define INF (1LL<<60) #define IINF (1<<30) #define EPS (1e-10) #define LINF 9223372036854775807 #define MOD 1000000007 #define endl "\n" template<typename T=lint>T in(){return *istream_iterator<T>(cin);} inline lint gcd(lint a,lint b){return b?gcd(b,a%b):a;} inline lint lcm(lint a,lint b){return a*b/gcd(a,b);} inline bool chmin(auto& s,const auto& t){bool res=s>t;s=min(s,t);return res;} inline bool chmax(auto& s,const auto& t){bool res=s<t;s=max(s,t);return res;} vector<lint> dx={-1,1,0,0,1,1,-1,-1}; vector<lint> dy={0,0,-1,1,1,-1,1,-1}; int main(){ lint n; cin>>n; mat a(n); lint mx=0; rep(i,n){ lint x; cin>>x; chmax(mx,x); rep(j,x){ lint y; cin>>y; a[i].push_back(y); } } vec ans; rep(j,mx)rep(i,n){ if(j<(lint)a[i].size())ans.push_back(a[i][j]); } output(ans); }