結果
問題 | No.1282 Display Elements |
ユーザー | niboshi_wakai |
提出日時 | 2020-11-06 22:47:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,320 bytes |
コンパイル時間 | 1,849 ms |
コンパイル使用メモリ | 175,356 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 13:25:09 |
合計ジャッジ時間 | 3,826 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 38 ms
6,944 KB |
testcase_17 | AC | 77 ms
6,944 KB |
testcase_18 | AC | 48 ms
6,944 KB |
testcase_19 | AC | 92 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; using ll =long long; typedef pair<int,int> P; #define SORT(a) sort((a).begin(),(a).end()) #define REV(a) reverse((a).begin(),(a).end()) #define For(i, a, b) for(int i = (a) ; i < (b) ; ++i) #define rep(i, n) For(i, 0, n) #define debug(x) cerr << #x << " = " << (x) << endl; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } void coY() {cout <<"Yes"<<endl;} void coN(){cout <<"No"<<endl;} //Write From this Line const int dy[] = {0,0,1,-1}; const int dx[] = {1,-1,0,0}; //const ll mod = 1e9+7; //const ll mod = 998244353; const double PI=3.14159265358979323846; const int INF = 1001001001; int main() { int n; cin >> n; vector<int> a(n); rep(i, n)cin>>a[i]; vector<int> b(n); rep(i, n)cin>>b[i]; // a君は,勝つことが出来るものの内最小のものを出せばいい. SORT(a); int ans = 0; // bは順番が決まっている. int tmp = 0; priority_queue<int,vector<int>, greater<int>> que; rep(i,n){ que.push(b[i]); while(que.size() &&a[i] > que.top()){ que.pop(); tmp++; } ans += tmp; } cout << ans << endl; }