Artsiom Zayats
Deputy Head – Chief Engineer
Contact Information:
- Location: Minsk, Belarus;
- Phone: +375 29 945 09 45;
- Email: ctapbiu.zayats@gmail.com;
- Discord: ctapbiu_zayats;
- LeetCode: https://leetcode.com/u/CTAPbIu_
About me:
Highly accomplished and results-oriented Civil Engineer with over 10 years of leadership experience in the road construction industry. I am an advocate for lifelong learning and am currently expanding my technical toolkit by studying Frontend Development. My goal is to combine traditional engineering leadership with modern digital solutions. I am a disciplined professional, capable of finding unconventional solutions and managing multidisciplinary teams of up to 60 people.
Experience:
- June 2025 – Present - Deputy Head – Chief Engineer DRSU (Road Repair and Construction Administration) — Gantsevichi, Belarus
- Direct management of multiple structural units totaling 60+ employees.
- Overseeing complex road construction projects of national, regional, and district importance.
- Providing technical leadership and ensuring compliance with strict engineering regulations.
- 2019 – 2025 - Construction Site Manager DRSU — Gantsevichi, Belarus
- Managed day-to-day operations and coordinated subcontractors on large-scale sites.
- Ensured 100% quality standards and met project deadlines consistently.
- 2014 – 2019 - Road Foreman (Master) DRSU (Gantsevichi / Luninets)
- Supervised construction crews and technical execution of roadworks.
- 2013 – 2014 - Civil Construction Worker Construction Company — Gantsevichi
- Gained fundamental hands-on experience in construction processes and material handling.
Education:
- Civil Engineer (2015 – 2018) Belarusian National Technical University (BNTU);
- Construction Technician (2010 – 2013) Mogilev State Architecture and Construction College.
Technical skills & certification:
- Engineering & Leadership:
- Project Management & Multi-unit Team Leadership (60+ people);
- Road, Bridge, and Airfield Construction Quality Control;
- IT & Programming:
- Frontend Development (In progress);
- Programming Basics: Java, SQL;
- Version Control: GIT;
- Professional Certifications (Belstroycenter):
- Chief Engineer Certificate (Roads, Bridges, Airfields);
- Chief Engineer Certificate (Site Landscaping / Improvement);
- Site Manager Certificate (Roads & Landscaping);
- Other:
- Driving License: Category B;
- English Level: Elementary (A2).
Code example:
public static int lengthOfLastWord(String s) {
char[] arr = s.trim().toCharArray();
int worldLength = arr.length;
for (int i = arr.length - 1; i >= 0; i--) {
if (arr[i] == ' ') {
worldLength = arr.length - (i + 1);
break;
}
}
return worldLength;
}
public static int[] plusOne(int[] digits) {
digits[digits.length - 1] += 1;
if (digits[digits.length - 1] == 10) {
for (int i = digits.length - 1; i >= 0; i--) {
if (digits[i] == 10) {
if (i == 0) {
int[] arr = new int[digits.length + 1];
arr[0] = 1;
for (int j = 1; j < arr.length; j++) {
arr[j] = 0;
}
return arr;
}
digits[i] = 0;
digits[i - 1] += 1;
}
}
}
return digits;
}