Submission #423716

# Submission time Handle Problem Language Result Execution time Memory
423716 2021-06-11T11:42:36 Z ignaciocanta Poi (IOI09_poi) C++14
5 / 100
334 ms 23752 KB
#include <bits/stdc++.h>

using namespace std;

//#include <ext/pb_ds/assoc_container.hpp>
//using namespace __gnu_pbds;
//template<class T> using Tree = tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;
 
using tint = long long;
using ld = long double;
 
#define FOR(i,a,b) for (int i = (a); i < (b); ++i)
#define F0R(i,a) FOR(i,0,a)
#define ROF(i,a,b) for (int i = (b)-1; i >= (a); --i)
#define R0F(i,a) ROF(i,0,a)
#define trav(a,x) for (auto& a: x)	
 
using pi = pair<int,int>;
using pl = pair<tint,tint>;
using vi = vector<int>;
using vpi = vector<pi>;
using vpl = vector<pl>;
using vvi = vector<vi>;
using vl = vector<tint>;
using vb = vector<bool>;
 
#define pb push_back
#define pf push_front
#define rsz resize
#define all(x) begin(x), end(x)
#define rall(x) x.rbegin(), x.rend() 
#define sz(x) (int)(x).size()
#define ins insert
 
#define f first
#define s second
#define mp make_pair
 
#define DBG(x) cerr << #x << " = " << x << endl;
 
const int MOD = 1e9+7; 
const int mod = 998244353;
const int MX = 2005;
const tint INF = 1e18; 
const int inf = 2e8;
const ld PI = acos(ld(-1)); 
const ld eps = 1e-5;
 
const int dx[4] = {1, -1, 0, 0};
const int dy[4] = {0, 0, 1, -1};
 
template<class T> void remDup(vector<T> &v){ 
    sort(all(v)); v.erase(unique(all(v)),end(v));
}
 
template<class T> bool ckmin(T& a, const T& b) {
    return b < a ? a = b, 1 : 0; 
} 
template<class T> bool ckmax(T& a, const T& b) {
    return a < b ? a = b, 1 : 0; 
}
 
bool valid(int x, int y, int n, int m){
    return (0<=x && x<n && 0<=y && y<m);
}
 
int cdiv(int a, int b) { return a/b+((a^b)>0&&a%b); } //redondea p arriba
int fdiv(int a, int b) { return a/b-((a^b)<0&&a%b); } //redondea p abajo
 
void NACHO(string name = ""){
    ios_base::sync_with_stdio(0); cin.tie(0);
    if(sz(name)){
        freopen((name+".in").c_str(), "r", stdin);
        freopen((name+".out").c_str(), "w", stdout);
    }
}

int a[MX][MX];
int quan[MX];

struct Contestant{
	int id, pts;
	bool operator<(const Contestant& o)const{
		if(pts  == o.pts) return id < o.id;
		return pts < o.pts;
	}
};

int main(){
	NACHO();
	int n, t, p; cin >> n >> t >> p;
	--p;
	F0R(i, n){
		F0R(j, t){
			cin >> a[i][j];
			if(a[i][j] == 1) ++quan[j];
		}
	}
	vector<Contestant> c (n);
	F0R(i, n){
		int tot = 0;
		F0R(j, t){
			if(a[i][j] == 1) tot += n-quan[j];
		}
		c[i] = {i, tot};
	}
	sort(all(c));
	int points, pos;
	F0R(i, n){
		if(c[i].id == p){
			points = c[i].pts;
			pos = i+1;
		}
	}
	cout << points << " " << pos << "\n";
}
/*
5 3 2 
0 0 1 
1 1 0 
1 0 0 
1 1 0 
1 1 0
*/

Compilation message

poi.cpp: In function 'void NACHO(std::string)':
poi.cpp:73:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   73 |         freopen((name+".in").c_str(), "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
poi.cpp:74:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   74 |         freopen((name+".out").c_str(), "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
poi.cpp: In function 'int main()':
poi.cpp:115:34: warning: 'pos' may be used uninitialized in this function [-Wmaybe-uninitialized]
  115 |  cout << points << " " << pos << "\n";
      |                                  ^~~~
poi.cpp:115:20: warning: 'points' may be used uninitialized in this function [-Wmaybe-uninitialized]
  115 |  cout << points << " " << pos << "\n";
      |                    ^~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Output isn't correct
2 Incorrect 1 ms 332 KB Output isn't correct
3 Incorrect 1 ms 332 KB Output isn't correct
4 Incorrect 1 ms 332 KB Output isn't correct
5 Incorrect 2 ms 332 KB Output isn't correct
6 Incorrect 1 ms 460 KB Output isn't correct
7 Correct 1 ms 588 KB Output is correct
8 Incorrect 1 ms 588 KB Output isn't correct
9 Incorrect 2 ms 716 KB Output isn't correct
10 Incorrect 3 ms 1208 KB Output isn't correct
11 Incorrect 11 ms 2168 KB Output isn't correct
12 Incorrect 17 ms 3404 KB Output isn't correct
13 Incorrect 51 ms 6484 KB Output isn't correct
14 Incorrect 71 ms 9228 KB Output isn't correct
15 Incorrect 128 ms 12596 KB Output isn't correct
16 Incorrect 134 ms 13700 KB Output isn't correct
17 Incorrect 212 ms 16772 KB Output isn't correct
18 Incorrect 224 ms 18924 KB Output isn't correct
19 Incorrect 309 ms 23016 KB Output isn't correct
20 Incorrect 334 ms 23752 KB Output isn't correct