답안 #570186

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
570186 2022-05-28T20:09:27 Z ChrisM2309 Mountains (NOI20_mountains) C++17
0 / 100
2000 ms 1492 KB
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<vi> vvi;
typedef vector<ii> vii; 
typedef vector<vii> wgraf;
typedef pair<int,ii> edge;

#define UNVISITED 0
#define VISITED 1
#define INF 1000000000
#define pb push_back
#define F first
#define S second
#define all(x) (x).begin(), (x).end()

void RESOLVER(){
    int n;
    cin >> n;
    vi data(n);
    int ans = 0;
    for (auto &i : data) cin >> i;
    for (int i = 0; i < n; i++){
        //cout << data[i] << " -- ";
        int iz = 0, der = 0;
        for (int j = 0; j < i; j++){
            //cout << data[j] << " "; 
            if (data[j]<data[i]) iz++;
        } 
        //cout << " con ";
        for (int j = i + 1; j < n; j++) {
            //cout << data[j] << " "; 
            if (data[j] < data[i]) der++;
        }
        //cout << "\n";
        ans += (iz * der);
    }
    cout << ans; 
    
}
int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int t = 1;
  //cin >> t;
  while(t--){
    RESOLVER();
  }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Execution timed out 2076 ms 1492 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2076 ms 1492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2076 ms 1492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2076 ms 1492 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Execution timed out 2076 ms 1492 KB Time limit exceeded
3 Halted 0 ms 0 KB -